diff options
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -77,7 +77,8 @@ ParseStatus Parser::parse(State& state, std::string_view& str) } } else { char *p; - const auto l = static_cast<Cell>(std::strtol(sub.data(), &p, 10)); + const auto base = state.dict.read(0); + const auto l = static_cast<Cell>(std::strtol(sub.data(), &p, base)); if (p != sub.data()) { if (state.compiling) { |