summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-10-22 16:42:18 -0400
committerOz Linden <oz@lindenlab.com>2014-10-22 16:42:18 -0400
commit04291ba319a6e68f2c2e9bd8e299878b93424452 (patch)
treec3a0657012dbeff0dcda09c0fb55a6bf107acff9
parent98d8313847c51b415009c9131a0aed14380de1a6 (diff)
correct merge error in llerror_test.cpp
-rwxr-xr-xindra/llcommon/tests/llerror_test.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llcommon/tests/llerror_test.cpp b/indra/llcommon/tests/llerror_test.cpp
index 8084a05288..febfa782ca 100755
--- a/indra/llcommon/tests/llerror_test.cpp
+++ b/indra/llcommon/tests/llerror_test.cpp
@@ -39,6 +39,14 @@
namespace
{
# pragma clang diagnostic ignored "-Wunused-function"
+ void test_that_error_h_includes_enough_things_to_compile_a_message()
+ {
+ LL_INFOS() << "!" << LL_ENDL;
+ }
+}
+
+namespace
+{
static bool fatalWasCalled;
void fatalCall(const std::string&) { fatalWasCalled = true; }
}