summaryrefslogtreecommitdiff
path: root/indra/llcommon/tests
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2018-05-17 06:15:41 -0400
committerNat Goodspeed <nat@lindenlab.com>2018-05-17 06:15:41 -0400
commitc45fc5a381de69ab95680f8902c4fdfddd7cd97a (patch)
treeffb084cec159eefd368306dd74a07b5ade3b611e /indra/llcommon/tests
parent78b8a0c3e44d7ae0931da7ea6064a12bd3d77b8c (diff)
parentc09d9c12e79fde83a87b2394c88b32e568271eda (diff)
SL-821: Merge LL_TO_WSTRING(), WSTRINGIZE() changes.
Diffstat (limited to 'indra/llcommon/tests')
-rw-r--r--indra/llcommon/tests/wrapllerrs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/indra/llcommon/tests/wrapllerrs.h b/indra/llcommon/tests/wrapllerrs.h
index 9a4bbbd630..08fbf19b1c 100644
--- a/indra/llcommon/tests/wrapllerrs.h
+++ b/indra/llcommon/tests/wrapllerrs.h
@@ -109,6 +109,12 @@ public:
mMessages.push_back(message);
}
+ friend inline
+ std::ostream& operator<<(std::ostream& out, const CaptureLogRecorder& log)
+ {
+ return log.streamto(out);
+ }
+
/// Don't assume the message we want is necessarily the LAST log message
/// emitted by the underlying code; search backwards through all messages
/// for the sought string.
@@ -126,7 +132,7 @@ public:
throw tut::failure(STRINGIZE("failed to find '" << search
<< "' in captured log messages:\n"
- << boost::ref(*this)));
+ << *this));
}
std::ostream& streamto(std::ostream& out) const
@@ -200,10 +206,4 @@ private:
LLError::RecorderPtr mRecorder;
};
-inline
-std::ostream& operator<<(std::ostream& out, const CaptureLogRecorder& log)
-{
- return log.streamto(out);
-}
-
#endif /* ! defined(LL_WRAPLLERRS_H) */