diff options
author | Oz Linden <oz@lindenlab.com> | 2014-10-22 16:42:18 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-10-22 16:42:18 -0400 |
commit | 04291ba319a6e68f2c2e9bd8e299878b93424452 (patch) | |
tree | c3a0657012dbeff0dcda09c0fb55a6bf107acff9 /indra/llcommon/tests/llerror_test.cpp | |
parent | 98d8313847c51b415009c9131a0aed14380de1a6 (diff) |
correct merge error in llerror_test.cpp
Diffstat (limited to 'indra/llcommon/tests/llerror_test.cpp')
-rwxr-xr-x | indra/llcommon/tests/llerror_test.cpp | 8 |
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; } } |