diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-15 01:18:00 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-15 01:18:00 +0100 |
commit | a0f181e667f3d3b299784809cd610a4782e5be92 (patch) | |
tree | b80d8e80f4e403afd9e3a38efd1394493166be80 /src/core/model | |
parent | 253492406f04657fe71e6c0c6603496241280478 (diff) |
Fixed compilation of VariantReader and Typesystem on GCC 4.9
Diffstat (limited to 'src/core/model')
-rw-r--r-- | src/core/model/Typesystem.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/Typesystem.hpp b/src/core/model/Typesystem.hpp index 9f9470e..9d22c0b 100644 --- a/src/core/model/Typesystem.hpp +++ b/src/core/model/Typesystem.hpp @@ -179,7 +179,7 @@ public: * These characters are not included in the result. May not be nullptr. */ std::pair<bool, Variant> read(CharReader &reader, Logger &logger, - const std::unordered_set<char> &delims = {}); + const std::unordered_set<char> &delims = std::unordered_set<char>{}); /** * Tries to parse an instance of this type from the given string. |