summaryrefslogtreecommitdiff
path: root/indra/llfilesystem/lldiriterator.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-09-05 15:09:11 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-09-05 19:00:05 +0300
commit94e45ca2e60b4013a4e38d8f2c1fe8dad4207c3a (patch)
treedd71b1ad2e2b987f8bfd54a00f9021306f9a978b /indra/llfilesystem/lldiriterator.cpp
parentd885e73ddd1faf0e897ca5e813069ff71cefbbbb (diff)
Replace boost filesystem with std filesystem
Build fixes, instead of resolving unclear boost filesystem errors just updated to std in affected places.
Diffstat (limited to 'indra/llfilesystem/lldiriterator.cpp')
-rw-r--r--indra/llfilesystem/lldiriterator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llfilesystem/lldiriterator.cpp b/indra/llfilesystem/lldiriterator.cpp
index e8c37389d2..28a93f1446 100644
--- a/indra/llfilesystem/lldiriterator.cpp
+++ b/indra/llfilesystem/lldiriterator.cpp
@@ -28,9 +28,9 @@
#include "fix_macros.h"
#include "llregex.h"
-#include <boost/filesystem.hpp>
+#include <filesystem>
-namespace fs = boost::filesystem;
+namespace fs = std::filesystem;
static std::string glob_to_regex(const std::string& glob);