From c5d9f849903889ff43383660d1a403d55364918a Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 30 Dec 2020 19:15:08 +0000 Subject: Fix recursion in test function --- netfs/unittests/testLib.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 #include +/// @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)) { } -- cgit v1.2.3