aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/bucket.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-06-14 15:03:29 -0300
committerHugo Parente Lima <hugo.lima@openbossa.org>2010-06-15 14:34:53 -0300
commit4bab9a89c8a0bd22b1a95e46cf75d9e2dd7f42e1 (patch)
treee607d9389ae53de2ddc6010262bf746fd3a60478 /tests/libsample/bucket.h
parentf516832ae986a42e7b01f2bcf01b1f1c76259718 (diff)
Fix problems on MacOSX due to uninitialized variables and mixing of int, uint and ulong variables.
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libsample/bucket.h')
-rw-r--r--tests/libsample/bucket.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libsample/bucket.h b/tests/libsample/bucket.h
index 127cfcdf7..7ea5428a5 100644
--- a/tests/libsample/bucket.h
+++ b/tests/libsample/bucket.h
@@ -41,9 +41,10 @@
class ObjectType;
-class LIBSAMPLE_API Bucket: public ObjectType
+class LIBSAMPLE_API Bucket : public ObjectType
{
public:
+ Bucket();
void push(int);
int pop();
bool empty();