aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/idstringlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/idstringlist.h b/common/idstringlist.h
index 4af9801a..fd57540b 100644
--- a/common/idstringlist.h
+++ b/common/idstringlist.h
@@ -35,7 +35,7 @@ struct IdStringList
{
SSOArray<IdString, 4> ids;
- IdStringList(){};
+ IdStringList() : ids(1, IdString()){};
explicit IdStringList(size_t n) : ids(n, IdString()){};
explicit IdStringList(IdString id) : ids(1, id){};
template <typename Tlist> explicit IdStringList(const Tlist &list) : ids(list){};