diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-24 17:25:25 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-24 17:25:25 +0800 |
commit | a20bf9a72365142e6a534180c375221c100d7c54 (patch) | |
tree | d61346da0fe492a2a82f0673d49ad298eb990b3a /indra/llfilesystem/lldiriterator.cpp | |
parent | d1353441f91d5776e1f4e72666f7c9de96eecca5 (diff) | |
parent | 09615bb5160d6ab67f027409ec6be25336842ab7 (diff) |
Merge branch 'main' into gltf_mesh_import
Diffstat (limited to 'indra/llfilesystem/lldiriterator.cpp')
-rw-r--r-- | indra/llfilesystem/lldiriterator.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llfilesystem/lldiriterator.cpp b/indra/llfilesystem/lldiriterator.cpp index 61f768c512..cd99c79357 100644 --- a/indra/llfilesystem/lldiriterator.cpp +++ b/indra/llfilesystem/lldiriterator.cpp @@ -72,7 +72,11 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) if (!is_dir) { +#if LL_WINDOWS + LL_WARNS() << "Invalid path: \"" << utf16str_to_utf8str(dir_path.wstring()) << "\"" << LL_ENDL; +#else LL_WARNS() << "Invalid path: \"" << dir_path.string() << "\"" << LL_ENDL; +#endif return; } @@ -130,7 +134,11 @@ bool LLDirIterator::Impl::next(std::string &fname) while (mIter != end_itr && !found) { boost::smatch match; +#if LL_WINDOWS + std::string name = utf16str_to_utf8str(mIter->path().filename().wstring()); +#else std::string name = mIter->path().filename().string(); +#endif found = ll_regex_match(name, match, mFilterExp); if (found) { |