diff options
-rw-r--r-- | libadhocutil/unittests/testCache.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libadhocutil/unittests/testCache.cpp b/libadhocutil/unittests/testCache.cpp index 736cf07..6520aa3 100644 --- a/libadhocutil/unittests/testCache.cpp +++ b/libadhocutil/unittests/testCache.cpp @@ -5,12 +5,9 @@ #include "cache.h" #include "cache.impl.h" -namespace std { - std::ostream & operator<<(std::ostream & s, const std::nullptr_t &) - { - return s << "(nil)"; - } -} +// LCOV_EXCL_START +BOOST_TEST_DONT_PRINT_LOG_VALUE(std::nullptr_t); +// LCOV_EXCL_STOP namespace AdHoc { typedef Cache<int, std::string> TestCache; |