Skip to content

Commit

Permalink
Merge pull request #165 from alnkpa/feature/support-catch2-2.3.0-and-…
Browse files Browse the repository at this point in the history
…beyond

#154 adapt to new catch2 include paths
  • Loading branch information
eranpeer committed May 27, 2019
2 parents 660c1d9 + 1da0b3c commit b563c57
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 b563c57

Please sign in to comment.