Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/tests/path_view.cpp')
-rw-r--r--test/tests/path_view.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tests/path_view.cpp b/test/tests/path_view.cpp
index 5648e8e2..724a2f4a 100644
--- a/test/tests/path_view.cpp
+++ b/test/tests/path_view.cpp
@@ -69,9 +69,9 @@ static inline void TestPathView()
BOOST_CHECK(f == "0");
#ifndef _WIN32
// cstr
- llfio::path_view::c_str g(e);
+ llfio::path_view::c_str<> g(e);
BOOST_CHECK(g.buffer != p); // NOLINT
- llfio::path_view::c_str h(f);
+ llfio::path_view::c_str<> h(f);
BOOST_CHECK(h.buffer == p + 70); // NOLINT
#endif
CheckPathView("/mnt/c/Users/ned/Documents/boostish/afio/programs/build_posix/testdir");
@@ -119,11 +119,11 @@ static inline void TestPathView()
BOOST_CHECK(g == "\\mnt\\c\\Users\\ned\\Documents\\boostish\\afio\\programs\\build_posix\\testdir");
BOOST_CHECK(h == "0");
// cstr
- llfio::path_view::c_str i(g, false);
+ llfio::path_view::c_str<> i(g, false);
BOOST_CHECK(i.buffer != p2);
- llfio::path_view::c_str j(g, true);
+ llfio::path_view::c_str<> j(g, true);
BOOST_CHECK(j.buffer == p2);
- llfio::path_view::c_str k(h, false);
+ llfio::path_view::c_str<> k(h, false);
BOOST_CHECK(k.buffer == p2 + 70);
CheckPathView(L"\\mnt\\c\\Users\\ned\\Documents\\boostish\\afio\\programs\\build_posix\\testdir\\0");