We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3725517 commit c7cd3b1Copy full SHA for c7cd3b1
1 file changed
indra/newview/llsyntaxid.cpp
@@ -521,7 +521,7 @@ std::vector<std::string> LLSyntaxDefCache::getCacheFileNames() const
521
522
LLSD LLSyntaxDefCache::loadDeserializedCacheFile(const std::string& file_path)
523
{
524
- std::ifstream file(file_path.c_str());
+ llifstream file(file_path);
525
if (file.good())
526
527
LLSD content;
@@ -542,7 +542,7 @@ std::string LLSyntaxDefCache::loadCacheFile(const std::string& name) const
542
std::string full_path = mFileCachePaths.getPath(name);
543
if (!full_path.empty())
544
545
- std::ifstream file(full_path.c_str());
+ llifstream file(full_path);
546
547
548
std::ostringstream ss;
0 commit comments