Skip to content

Commit

Permalink
Merge pull request #233 from eranpeer/fix_missing_includes_single_header
Browse files Browse the repository at this point in the history
Changed "" includes to <> includes for 3rd party lib.
  • Loading branch information
FranckRJ committed Apr 5, 2021
2 parents 1576b26 + 1ae52e8 commit 4716aca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/catch/CatchFakeit.hpp
Expand Up @@ -4,9 +4,9 @@
#include "fakeit/EventHandler.hpp"
#include "mockutils/to_string.hpp"
#if __has_include("catch2/catch.hpp")
# include "catch2/catch.hpp"
# include <catch2/catch.hpp>
#else
# include "catch.hpp"
# include <catch.hpp>
#endif

namespace fakeit {
Expand Down
2 changes: 1 addition & 1 deletion config/cute/CuteFakeit.hpp
@@ -1,7 +1,7 @@
#pragma once

#include "fakeit/DefaultFakeit.hpp"
#include "cute.h"
#include <cute.h>

namespace fakeit {

Expand Down
2 changes: 1 addition & 1 deletion config/gtest/GTestFakeit.hpp
@@ -1,7 +1,7 @@
#pragma once

#include "fakeit/DefaultFakeit.hpp"
#include "gtest/gtest.h"
#include <gtest/gtest.h>

namespace fakeit {

Expand Down

0 comments on commit 4716aca

Please sign in to comment.