diff options
| author | Oz Linden <oz@lindenlab.com> | 2015-04-07 17:59:28 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2015-04-07 17:59:28 -0400 |
| commit | 8b42c7898ef756a4a81daa08b2a5acce2894f4b8 (patch) | |
| tree | 57011bc24cc27df7b436c1edda7957ac3530fa57 /indra/newview/llsyntaxid.cpp | |
| parent | 3a57b18896eacb6fea6680d0eccaaeddb0b700b0 (diff) | |
replace llifstream and llofstream with std::ifstream and std::ofstream respectively
Diffstat (limited to 'indra/newview/llsyntaxid.cpp')
| -rw-r--r-- | indra/newview/llsyntaxid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llsyntaxid.cpp b/indra/newview/llsyntaxid.cpp index 802dff1ead..cbbc238b24 100644 --- a/indra/newview/llsyntaxid.cpp +++ b/indra/newview/llsyntaxid.cpp @@ -83,7 +83,7 @@ public: const std::string xml = str.str(); // save the str to disk, usually to the cache. - llofstream file(mFileSpec.c_str(), std::ios_base::out); + std::ofstream file(mFileSpec.c_str(), std::ios_base::out); file.write(xml.c_str(), str.str().size()); file.close(); @@ -268,7 +268,7 @@ void LLSyntaxIdLSL::loadDefaultKeywordsIntoLLSD() void LLSyntaxIdLSL::loadKeywordsIntoLLSD() { LLSD content; - llifstream file; + std::ifstream file; file.open(mFullFileSpec.c_str()); if (file.is_open()) { |
