aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/libsample/list.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/libsample/list.h b/tests/libsample/list.h
index f211e6a79..c620c5f81 100644
--- a/tests/libsample/list.h
+++ b/tests/libsample/list.h
@@ -39,14 +39,14 @@
#include "libsamplemacros.h"
template<class T>
-class LIBSAMPLE_API List : public std::list<T>
+class List : public std::list<T>
{
};
-class LIBSAMPLE_API IntList : public List<int>
+class IntList : public List<int>
{
- public:
- void append(int v) { insert(end(), v); }
+public:
+ inline void append(int v) { insert(end(), v); }
};
#endif // LIST_H