aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-01-26 18:54:51 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-01-26 22:15:52 -0200
commitb62fe3b11c547f493196e97bceb1601fb1ad73d6 (patch)
treed022927d512d55a4eb7f1ef116bd0fa6ca91527b /tests
parentcd2dceceefdb01781962be84768f0e0828dd956e (diff)
Do not use C++ qualified name to generate the number protocol struct.
Diffstat (limited to 'tests')
-rw-r--r--tests/libsample/derived.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libsample/derived.h b/tests/libsample/derived.h
index 25e608df2..965cd871d 100644
--- a/tests/libsample/derived.h
+++ b/tests/libsample/derived.h
@@ -54,6 +54,7 @@ public:
class SomeInnerClass {
public:
void uselessMethod() {}
+ SomeInnerClass operator+(const SomeInnerClass& other) { return other; }
};
Derived(int id = -1);