aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/bucket.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/bucket.h')
-rw-r--r--tests/libsample/bucket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libsample/bucket.h b/tests/libsample/bucket.h
index 7ea5428a5..c0ff388b7 100644
--- a/tests/libsample/bucket.h
+++ b/tests/libsample/bucket.h
@@ -49,11 +49,11 @@ public:
int pop();
bool empty();
void lock();
- bool locked() { return m_locked; }
+ inline bool locked() { return m_locked; }
void unlock();
virtual bool virtualBlockerMethod();
- bool callVirtualBlockerMethodButYouDontKnowThis() { return virtualBlockerMethod(); }
+ inline bool callVirtualBlockerMethodButYouDontKnowThis() { return virtualBlockerMethod(); }
private:
std::list<int> m_data;