diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-06-13 23:12:32 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-06-13 23:12:32 +0100 |
commit | 1af14f1087fc38bba1f1110316aa58fcab35c1d9 (patch) | |
tree | f4a4bc8548a50cf1eba6bbc98a4109d6984e6403 /icespider/unittests/testFlatMap.cpp | |
parent | Fix compilation with gcc-15 (diff) | |
download | icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.tar.bz2 icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.tar.xz icespider-1af14f1087fc38bba1f1110316aa58fcab35c1d9.zip |
Update to C++23 and fix lots of warnings
Diffstat (limited to 'icespider/unittests/testFlatMap.cpp')
-rw-r--r-- | icespider/unittests/testFlatMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icespider/unittests/testFlatMap.cpp b/icespider/unittests/testFlatMap.cpp index ed19371..f673cdd 100644 --- a/icespider/unittests/testFlatMap.cpp +++ b/icespider/unittests/testFlatMap.cpp @@ -7,7 +7,7 @@ #include <utility> #include <vector> -using TM = IceSpider::flatmap<std::string_view, int>; +using TM = IceSpider::FlatMap<std::string_view, int>; BOOST_TEST_DONT_PRINT_LOG_VALUE(TM::const_iterator) @@ -68,7 +68,7 @@ BOOST_AUTO_TEST_CASE(several) BOOST_AUTO_TEST_SUITE_END() -using TMI = IceSpider::flatmap<int, std::string_view>; +using TMI = IceSpider::FlatMap<int, std::string_view>; BOOST_TEST_DONT_PRINT_LOG_VALUE(TMI::const_iterator) |