Without the wrap, paths can flee the “fs-jail”.
For example, the following compiles on current master:
0diff --git a/src/test/fs_tests.cpp b/src/test/fs_tests.cpp
1index 5875f0218f..04eef9f5c6 100644
2--- a/src/test/fs_tests.cpp
3+++ b/src/test/fs_tests.cpp
4@@ -19,7 +19,7 @@ BOOST_AUTO_TEST_CASE(fsbridge_pathtostring)
5 {
6 std::string u8_str = "fs_tests_₿_🏃";
7 BOOST_CHECK_EQUAL(fs::PathToString(fs::PathFromString(u8_str)), u8_str);
8- BOOST_CHECK_EQUAL(fs::u8path(u8_str).u8string(), u8_str);
9+ BOOST_CHECK_EQUAL(fs::u8path(u8_str).string(), u8_str);
10 BOOST_CHECK_EQUAL(fs::PathFromString(u8_str).u8string(), u8_str);
11 BOOST_CHECK_EQUAL(fs::PathToString(fs::u8path(u8_str)), u8_str);
12 #ifndef WIN32
After this pull, it will fail, as expected:
0test/fs_tests.cpp:22:42: error: attempt to use a deleted function
1 BOOST_CHECK_EQUAL(fs::u8path(u8_str).string(), u8_str);
2 ^
3./fs.h:52:17: note: 'string' has been explicitly marked deleted here
4 std::string string() const = delete;
5 ^
61 error generated.
7make[2]: *** [Makefile:17833: test/test_bitcoin-fs_tests.o] Error 1