File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 10
10
11
11
#if __has_include("mimic++/Reporting.hpp")
12
12
#include " mimic++/Reporting.hpp"
13
- #include " mimic++/Utility .hpp"
13
+ #include " mimic++/utilities/C++23Backports .hpp"
14
14
#elif not defined(MIMICPP_VERSION)
15
15
#error "It appears that the test-adapter is not included in the mimic++ project or package." \
16
16
" If you plan to use it alongside the mimic++-amalgamated header, please ensure to include the adapter-header afterwards."
@@ -32,7 +32,7 @@ namespace mimicpp::reporting::detail::boost_test
32
32
inline void send_fail (StringViewT const msg)
33
33
{
34
34
BOOST_TEST_FAIL (msg);
35
- unreachable ();
35
+ util:: unreachable ();
36
36
}
37
37
38
38
inline void send_success (StringViewT const msg)
Original file line number Diff line number Diff line change 10
10
11
11
#if __has_include("mimic++/Reporting.hpp")
12
12
#include " mimic++/Reporting.hpp"
13
- #include " mimic++/Utility .hpp"
13
+ #include " mimic++/utilities/C++23Backports .hpp"
14
14
#elif not defined(MIMICPP_VERSION)
15
15
#error "It appears that the test-adapter is not included in the mimic++ project or package." \
16
16
" If you plan to use it alongside the mimic++-amalgamated header, please ensure to include the adapter-header afterwards."
@@ -33,7 +33,7 @@ namespace mimicpp::reporting::detail::catch2
33
33
FAIL (msg);
34
34
#endif
35
35
36
- unreachable ();
36
+ util:: unreachable ();
37
37
}
38
38
39
39
inline void send_success (StringViewT const msg)
Original file line number Diff line number Diff line change 10
10
11
11
#if __has_include("mimic++/Reporting.hpp")
12
12
#include " mimic++/Reporting.hpp"
13
- #include " mimic++/Utility .hpp"
13
+ #include " mimic++/utilities/C++23Backports .hpp"
14
14
#elif not defined(MIMICPP_VERSION)
15
15
#error "It appears that the test-adapter is not included in the mimic++ project or package." \
16
16
" If you plan to use it alongside the mimic++-amalgamated header, please ensure to include the adapter-header afterwards."
@@ -30,7 +30,7 @@ namespace mimicpp::reporting::detail::doctest
30
30
inline void send_fail (StringViewT const msg)
31
31
{
32
32
DOCTEST_FAIL (msg);
33
- unreachable ();
33
+ util:: unreachable ();
34
34
}
35
35
36
36
inline void send_success (StringViewT const msg)
You can’t perform that action at this time.
0 commit comments