diff options
author | David Robillard <d@drobilla.net> | 2019-03-09 17:44:36 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-12 19:42:09 +0100 |
commit | 3c0ed6b66b6e99c68fc01c86b5796a55d74a5977 (patch) | |
tree | 7be3252c13ef123b956424169c1bfbf55359564a /tests/tst_FilePath.cpp | |
parent | e32f32a360f2bf8f017ea347b6d1e568c0beaf68 (diff) | |
download | ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.tar.gz ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.tar.bz2 ingen-3c0ed6b66b6e99c68fc01c86b5796a55d74a5977.zip |
WIP: Port to serd1serd1
Diffstat (limited to 'tests/tst_FilePath.cpp')
-rw-r--r-- | tests/tst_FilePath.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/tst_FilePath.cpp b/tests/tst_FilePath.cpp index 768371fe..68f734f0 100644 --- a/tests/tst_FilePath.cpp +++ b/tests/tst_FilePath.cpp @@ -18,8 +18,7 @@ #include "ingen/FilePath.hpp" #include "ingen/fmt.hpp" - -#include <boost/utility/string_view.hpp> +#include "serd/serd.hpp" #include <string> @@ -91,7 +90,7 @@ main(int, char**) path += 'r'; EXPECT_EQ(path, "/a/bar/car"); - path += boost::string_view("/d"); + path += serd::StringView("/d"); EXPECT_EQ(path, "/a/bar/car/d"); const FilePath apple("apple"); |