make None the first enum type
This commit is contained in:
parent
6ac6f39894
commit
1faf3d21d4
|
@ -28,7 +28,7 @@ namespace realm {
|
||||||
namespace parser {
|
namespace parser {
|
||||||
struct Expression
|
struct Expression
|
||||||
{
|
{
|
||||||
enum class Type { Number, String, KeyPath, Argument, True, False, None } type = Type::None;
|
enum class Type { None, Number, String, KeyPath, Argument, True, False } type = Type::None;
|
||||||
std::string s;
|
std::string s;
|
||||||
Expression() {}
|
Expression() {}
|
||||||
Expression(Type t, std::string s) : type(t), s(s) {}
|
Expression(Type t, std::string s) : type(t), s(s) {}
|
||||||
|
|
Loading…
Reference in New Issue