diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-08-27 14:22:42 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-08-27 14:22:42 +0100 |
commit | 9ae973ec5b271b99d192644cc094ef2d1e3ded2a (patch) | |
tree | a0f6d902233824437cc7f0837a7b66be6515c8a2 /indra | |
parent | 9c6678b5e76c485ae915b539327069b43185e16f (diff) |
SL-944 - mac build error fix: wants override to be used throughout a class if it is used at all
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llerror.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 3e4dd708a8..843244ce92 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -96,7 +96,7 @@ namespace { } virtual void recordMessage(LLError::ELevel level, - const std::string& message) + const std::string& message) override { int syslogPriority = LOG_CRIT; switch (level) { @@ -152,7 +152,7 @@ namespace { bool okay() { return mFile.good(); } virtual void recordMessage(LLError::ELevel level, - const std::string& message) + const std::string& message) override { if (LLError::getAlwaysFlush()) { @@ -183,7 +183,7 @@ namespace { } virtual void recordMessage(LLError::ELevel level, - const std::string& message) + const std::string& message) override { if (ANSI_PROBE == mUseANSI) mUseANSI = (checkANSI() ? ANSI_YES : ANSI_NO); @@ -248,7 +248,7 @@ namespace { } virtual void recordMessage(LLError::ELevel level, - const std::string& message) + const std::string& message) override { mBuffer->addLine(message); } @@ -270,7 +270,7 @@ namespace { } virtual void recordMessage(LLError::ELevel level, - const std::string& message) + const std::string& message) override { debugger_print(message); } |