aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/strlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/strlist.h')
-rw-r--r--tests/libsample/strlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libsample/strlist.h b/tests/libsample/strlist.h
index 85b746464..334c868f9 100644
--- a/tests/libsample/strlist.h
+++ b/tests/libsample/strlist.h
@@ -48,7 +48,7 @@ public:
inline StrList(const StrList& lst) : std::list<Str>(lst) { }
inline StrList(const std::list<Str>& lst) : std::list<Str>(lst) { }
- void append(Str str) { push_back(str); }
+ inline void append(Str str) { push_back(str); }
Str join(const Str& sep) const;
bool operator==(const std::list<Str>& other) const;