diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libsample/echo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libsample/echo.h b/tests/libsample/echo.h index 3e607cdd..40aed304 100644 --- a/tests/libsample/echo.h +++ b/tests/libsample/echo.h @@ -33,6 +33,8 @@ public: Echo(){} ~Echo(){} + void doNothingWithConstBool(const bool hi) {} + // These method are here just for compilation test purposes Echo& operator<<(unsigned int item) { return *this; } Echo& operator<<(signed int item) { return *this; } |