aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests/paths.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit_tests/paths.hpp')
-rw-r--r--test/unit_tests/paths.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/unit_tests/paths.hpp b/test/unit_tests/paths.hpp
index 3eb2fd6..afc15ec 100644
--- a/test/unit_tests/paths.hpp
+++ b/test/unit_tests/paths.hpp
@@ -6,22 +6,15 @@
#pragma once
#include <boost/filesystem.hpp>
-#include <boost/nowide/filesystem.hpp>
#include <boost/test/unit_test.hpp>
using path = boost::filesystem::path;
-class FixFilesystem {
-public:
- FixFilesystem() { boost::nowide::nowide_filesystem(); }
-};
-
class Paths {
public:
typedef boost::filesystem::path path;
static Paths& get() {
- static FixFilesystem fix_filesystem;
static Paths instance;
return instance;
}