aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/libsample/echo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libsample/echo.h b/tests/libsample/echo.h
index 92038b1f0..187518859 100644
--- a/tests/libsample/echo.h
+++ b/tests/libsample/echo.h
@@ -43,6 +43,7 @@ public:
Echo& operator<<(unsigned int item) { return *this; }
Echo& operator<<(signed int item) { return *this; }
Echo& operator<<(const ObjectType* item) { return *this; }
+ Echo& operator<<(Str str) { return *this; }
};
#endif