diff options
author | callum_linden <none@none> | 2014-12-12 17:42:16 -0800 |
---|---|---|
committer | callum_linden <none@none> | 2014-12-12 17:42:16 -0800 |
commit | bbd6d8dc0e1604335f22c03c1d9add1510e6ce46 (patch) | |
tree | c22e468413d24596cbc6b0b538b1cdf62affb620 /indra/newview | |
parent | f7d1ece5bee79f030894cf24dc8e7a9135df9242 (diff) |
Implicit conversion from ostream to string needs help in VS2013
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llpanelmaininventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index a7c9dbdf7b..a5063de0f4 100755 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -246,7 +246,7 @@ LLPanelMainInventory::~LLPanelMainInventory( void ) llofstream filtersFile(filterSaveName.str()); if(!LLSDSerialize::toPrettyXML(filterRoot, filtersFile)) { - LL_WARNS() << "Could not write to filters save file " << filterSaveName << LL_ENDL; + LL_WARNS() << "Could not write to filters save file " << filterSaveName.str() << LL_ENDL; } else filtersFile.close(); |