Skip to content

Commit

Permalink
#154 adapt to new catch2 include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
alnkpa committed Dec 7, 2018
1 parent 362271d commit 1da0b3c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config/catch/CatchFakeit.hpp
Expand Up @@ -3,7 +3,11 @@
#include "fakeit/DefaultFakeit.hpp"
#include "fakeit/EventHandler.hpp"
#include "mockutils/to_string.hpp"
#include "catch.hpp"
#if __has_include("catch2/catch.hpp")
# include "catch2/catch.hpp"
#else
# include "catch.hpp"
#endif

namespace fakeit {

Expand Down

0 comments on commit 1da0b3c

Please sign in to comment.