diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 14:01:05 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 14:01:05 -0500 |
commit | 59ecb61463119e77637214e3c298c422c4537ea0 (patch) | |
tree | a77f15d7897c9f1f23db3d54e859cba3a7a56822 /parser.hpp | |
parent | 4367821606962df980f5aa0823575856796b16fc (diff) |
parse files
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) { |