diff options
author | callum_linden <none@none> | 2014-12-09 17:29:07 -0800 |
---|---|---|
committer | callum_linden <none@none> | 2014-12-09 17:29:07 -0800 |
commit | 0b1259a0847b3d6f2d0d1f2af0ec4e25d7c3551b (patch) | |
tree | e44e36e9bdd444d49f87677a859a0426009d8557 /indra/llcommon | |
parent | 0524a4048bd6d4d4bcd12d73e874db9379a0c02a (diff) |
no implicit conversion from ofsteam to bool in VS2013!!!!
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-x | indra/llcommon/llerror.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 22cd861c72..8119b14887 100755 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -126,7 +126,7 @@ namespace { mFile.close(); } - bool okay() { return mFile; } + bool okay() { return mFile.good(); } virtual void recordMessage(LLError::ELevel level, const std::string& message) |