Base: Remove Boost-based filesystem and switch to standard <filesystem>

This commit is contained in:
tritao
2025-01-19 19:05:06 +00:00
committed by Chris Hennes
parent 5931e3295d
commit f7a0cece08
24 changed files with 144 additions and 110 deletions

View File

@@ -24,7 +24,7 @@
#include <memory>
#include <boost/filesystem.hpp>
#include <filesystem>
#include <Mod/Material/MaterialGlobal.h>
@@ -34,7 +34,7 @@
#include "MaterialLibrary.h"
#include "MaterialFilter.h"
namespace fs = boost::filesystem;
namespace fs = std::filesystem;
class QMutex;

View File

@@ -187,8 +187,6 @@ class DocumentBasicCases(unittest.TestCase):
self.assertTrue(L1.Float - 47.11 < 0.001)
self.assertTrue(L1.Bool == True)
self.assertTrue(L1.String == "4711")
# temporarily not checked because of strange behavior of boost::filesystem JR
# self.assertTrue(L1.Path == "c:/temp")
self.assertTrue(float(L1.Angle) - 3.0 < 0.001)
self.assertTrue(float(L1.Distance) - 47.11 < 0.001)