aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother/number.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libother/number.h')
-rw-r--r--tests/libother/number.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libother/number.h b/tests/libother/number.h
index 32af33258..8fd2671da 100644
--- a/tests/libother/number.h
+++ b/tests/libother/number.h
@@ -43,10 +43,10 @@ class LIBOTHER_API Number
{
public:
explicit Number(int value) : m_value(value) {};
- int value() const { return m_value; }
+ inline int value() const { return m_value; }
Str toStr() const;
- operator Str() const { return toStr(); }
+ inline operator Str() const { return toStr(); }
friend LIBOTHER_API Point operator*(const Point&, const Number&);