summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-04-15 00:38:21 -0400
committerLioncash <mathew1800@gmail.com>2015-04-15 02:04:03 -0400
commitb0613bb1c857dd8f0e015217c2c74593132a630b (patch)
treee3ed580f1146aa2faed4b4ebbcba6246e657427c /Source/Core/Common/Logging
parent7506c386cf316c68a62e4c4b1417c251cc8279d4 (diff)
General: Apply the const specifier where applicable
Diffstat (limited to 'Source/Core/Common/Logging')
-rw-r--r--Source/Core/Common/Logging/LogManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Logging/LogManager.h b/Source/Core/Common/Logging/LogManager.h
index 1d3f30df33..67f964e091 100644
--- a/Source/Core/Common/Logging/LogManager.h
+++ b/Source/Core/Common/Logging/LogManager.h
@@ -32,7 +32,7 @@ public:
void Log(LogTypes::LOG_LEVELS, const char *msg) override;
- bool IsValid() { return !m_logfile.fail(); }
+ bool IsValid() const { return m_logfile.good(); }
bool IsEnabled() const { return m_enable; }
void SetEnable(bool enable) { m_enable = enable; }