diff options
Diffstat (limited to 'parser.hpp')
-rw-r--r-- | parser.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,8 @@ public: ParseStatus parse(State& state, std::string_view& str) { const auto end = str.find_first_of(" \t\n\r"); const auto sub = str.substr(0, end); + if (sub.empty()) + return ParseStatus::Finished; if (state.pass != Pass::None) { switch (state.pass) { |