summaryrefslogtreecommitdiff
path: root/indra/llfilesystem/lldiriterator.cpp
diff options
context:
space:
mode:
authorCallum Prentice <callum@gmail.com>2025-09-05 13:44:57 -0700
committerCallum Prentice <callum@gmail.com>2025-09-05 13:44:57 -0700
commit94cfce4a4d2dbc799e5e8a3495a628ae85d4cffe (patch)
tree940f3139d5ba57fc2bb7a1b6d52502eeaf50c8ed /indra/llfilesystem/lldiriterator.cpp
parent12704b941132ec6fb6ca62da007c3ec02292c872 (diff)
Revert "Replace boost filesystem with std filesystem"
This reverts commit 94e45ca2e60b4013a4e38d8f2c1fe8dad4207c3a.
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 28a93f1446..e8c37389d2 100644
--- a/indra/llfilesystem/lldiriterator.cpp
+++ b/indra/llfilesystem/lldiriterator.cpp
@@ -28,9 +28,9 @@
#include "fix_macros.h"
#include "llregex.h"
-#include <filesystem>
+#include <boost/filesystem.hpp>
-namespace fs = std::filesystem;
+namespace fs = boost::filesystem;
static std::string glob_to_regex(const std::string& glob);