diff options
-rw-r--r-- | netfs/unittests/testLib.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/netfs/unittests/testLib.cpp b/netfs/unittests/testLib.cpp index b44ab37..d3ce2fe 100644 --- a/netfs/unittests/testLib.cpp +++ b/netfs/unittests/testLib.cpp @@ -4,14 +4,16 @@ #include <entCache.impl.h> #include <lockHelpers.h> +/// @cond namespace std { ostream & operator<<(ostream & strm, const ResolvedAs & r) { - strm << r; + strm << (int)r; return strm; } } +/// @endcond struct TestEntry { TestEntry(int i, std::string n) : id(i), name(std::move(n)) { } |