aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/pointerholder.h
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-07-20 14:00:44 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-08-18 15:21:20 -0300
commitb4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9 (patch)
treee106cc99a076d3c4677b6afb4857fcb36b1351f9 /tests/libsample/pointerholder.h
parentda5a88b3b53b4769e77eff1d48cc9a2c7152f6c2 (diff)
fixed tests exported symbols.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libsample/pointerholder.h')
-rw-r--r--tests/libsample/pointerholder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libsample/pointerholder.h b/tests/libsample/pointerholder.h
index 7d4654511..cf11cad7b 100644
--- a/tests/libsample/pointerholder.h
+++ b/tests/libsample/pointerholder.h
@@ -37,12 +37,12 @@
#include "libsamplemacros.h"
-class LIBSAMPLE_API PointerHolder
+class PointerHolder
{
public:
explicit PointerHolder(void* ptr) : m_pointer(ptr) {}
~PointerHolder() {}
- void* pointer() const { return m_pointer; }
+ inline void* pointer() const { return m_pointer; }
private:
void* m_pointer;
};