aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/nondefaultctor.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/nondefaultctor.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/nondefaultctor.h')
-rw-r--r--tests/libsample/nondefaultctor.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/libsample/nondefaultctor.h b/tests/libsample/nondefaultctor.h
index cd4f6eace..ea0d6dfab 100644
--- a/tests/libsample/nondefaultctor.h
+++ b/tests/libsample/nondefaultctor.h
@@ -37,7 +37,7 @@
#include "libsamplemacros.h"
-class LIBSAMPLE_API NonDefaultCtor
+class NonDefaultCtor
{
int m_value;
public:
@@ -45,22 +45,22 @@ public:
{
}
- int value()
+ inline int value()
{
return m_value;
}
- NonDefaultCtor returnMyself()
+ inline NonDefaultCtor returnMyself()
{
return *this;
}
- NonDefaultCtor returnMyself(int)
+ inline NonDefaultCtor returnMyself(int)
{
return *this;
}
- NonDefaultCtor returnMyself(int, NonDefaultCtor)
+ inline NonDefaultCtor returnMyself(int, NonDefaultCtor)
{
return *this;
}
@@ -70,7 +70,7 @@ public:
return *this;
}
- NonDefaultCtor callReturnMyselfVirtual()
+ inline NonDefaultCtor callReturnMyselfVirtual()
{
return returnMyselfVirtual();
}