diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/expression/type.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/mbgl/style/expression/type.hpp b/include/mbgl/style/expression/type.hpp index da59eb001c..513c4bdc17 100644 --- a/include/mbgl/style/expression/type.hpp +++ b/include/mbgl/style/expression/type.hpp @@ -14,49 +14,49 @@ template <class T> std::string toString(const T& t); struct NullType { - constexpr NullType() = default; + constexpr NullType() {}; std::string getName() const { return "null"; } bool operator==(const NullType&) const { return true; } }; struct NumberType { - constexpr NumberType() = default; + constexpr NumberType() {}; std::string getName() const { return "number"; } bool operator==(const NumberType&) const { return true; } }; struct BooleanType { - constexpr BooleanType() = default; + constexpr BooleanType() {}; std::string getName() const { return "boolean"; } bool operator==(const BooleanType&) const { return true; } }; struct StringType { - constexpr StringType() = default; + constexpr StringType() {}; std::string getName() const { return "string"; } bool operator==(const StringType&) const { return true; } }; struct ColorType { - constexpr ColorType() = default; + constexpr ColorType() {}; std::string getName() const { return "color"; } bool operator==(const ColorType&) const { return true; } }; struct ObjectType { - constexpr ObjectType() = default; + constexpr ObjectType() {}; std::string getName() const { return "object"; } bool operator==(const ObjectType&) const { return true; } }; struct ErrorType { - constexpr ErrorType() = default; + constexpr ErrorType() {}; std::string getName() const { return "error"; } bool operator==(const ErrorType&) const { return true; } }; struct ValueType { - constexpr ValueType() = default; + constexpr ValueType() {}; std::string getName() const { return "value"; } bool operator==(const ValueType&) const { return true; } }; |