aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-10-27 15:56:58 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:54 -0300
commitb8b6a8b0316668a8af08b651537747ede08e0c96 (patch)
tree7ee93de70987688fc76eeeee77b711dbafa1aeda /tests
parent34cce54d695330ebfa047dbbb4c1c0ab60e22c74 (diff)
Simplifies the generated code removing the use of std::auto_ptr.
Diffstat (limited to 'tests')
-rw-r--r--tests/libsample/echo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libsample/echo.h b/tests/libsample/echo.h
index 3e607cdd5..40aed3047 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; }