From 856f5b36514ff512a6a27b6e8decee7f047a71c9 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 22 Sep 2024 18:25:01 +0300 Subject: [PATCH] Fix relative includes --- test/test_bimap_info.cpp | 2 +- test/test_bimap_operator_bracket.cpp | 2 +- test/test_bimap_ordered.cpp | 4 ++-- test/test_bimap_sequenced.cpp | 2 +- test/test_bimap_unordered.cpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/test_bimap_info.cpp b/test/test_bimap_info.cpp index a2e4d15..cee7154 100644 --- a/test/test_bimap_info.cpp +++ b/test/test_bimap_info.cpp @@ -27,7 +27,7 @@ #include #include -#include +#include "strong_type.hpp" int test_bimap_info() { diff --git a/test/test_bimap_operator_bracket.cpp b/test/test_bimap_operator_bracket.cpp index e0f2477..e597764 100644 --- a/test/test_bimap_operator_bracket.cpp +++ b/test/test_bimap_operator_bracket.cpp @@ -29,7 +29,7 @@ #include #include -#include +#include "strong_type.hpp" void test_bimap_operator_bracket() { diff --git a/test/test_bimap_ordered.cpp b/test/test_bimap_ordered.cpp index d57b824..1e242ab 100644 --- a/test/test_bimap_ordered.cpp +++ b/test/test_bimap_ordered.cpp @@ -38,8 +38,8 @@ // bimap container #include -#include -#include +#include "strong_type.hpp" +#include "test_bimap.hpp" struct left_tag {}; struct right_tag {}; diff --git a/test/test_bimap_sequenced.cpp b/test/test_bimap_sequenced.cpp index 1e868ac..fbd1ed3 100644 --- a/test/test_bimap_sequenced.cpp +++ b/test/test_bimap_sequenced.cpp @@ -37,7 +37,7 @@ #include #include -#include +#include "test_bimap.hpp" struct left_tag {}; struct right_tag {}; diff --git a/test/test_bimap_unordered.cpp b/test/test_bimap_unordered.cpp index 315893f..32c9701 100644 --- a/test/test_bimap_unordered.cpp +++ b/test/test_bimap_unordered.cpp @@ -35,8 +35,8 @@ // bimap container #include -#include -#include +#include "strong_type.hpp" +#include "test_bimap.hpp" struct left_tag {}; struct right_tag {};