diff options
| author | jantuomi <jans.tuomi@gmail.com> | 2016-09-01 09:36:27 +0300 |
|---|---|---|
| committer | jantuomi <jans.tuomi@gmail.com> | 2016-09-01 09:36:27 +0300 |
| commit | 670bcb546393f60b92268cf4f1b72524fdd00bf4 (patch) | |
| tree | 5d4d2871cb5d19816517f961e2c18ecb546647d1 | |
| parent | c4cae690deddcb8a7fc6a537816e832525ca0e86 (diff) | |
Fix missing curly paren
| -rw-r--r-- | value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ #include <string> Value::Value(Token& token) { - if (!token.isString()) + if (!token.isString()) { m_type = Value::Type::Integer; m_intData = std::stoi(token.getLexeme(), nullptr, 10); } else { |
