aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-01-26 19:22:30 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-01-26 22:15:52 -0200
commitdf3b7134e1ff05fde57e8e3f74835131e34110d4 (patch)
tree37a050de88ed8bcc7340efad5e9ab9506e177fc8 /tests
parentb62fe3b11c547f493196e97bceb1601fb1ad73d6 (diff)
Use qualified C++ names on variables inside richComparison functions.
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 965cd871d..162acbb7b 100644
--- a/tests/libsample/derived.h
+++ b/tests/libsample/derived.h
@@ -55,6 +55,7 @@ public:
public:
void uselessMethod() {}
SomeInnerClass operator+(const SomeInnerClass& other) { return other; }
+ bool operator==(const SomeInnerClass& other) { return true; }
};
Derived(int id = -1);