aboutsummaryrefslogtreecommitdiffstats
path: root/parser.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 14:01:05 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 14:01:05 -0500
commit59ecb61463119e77637214e3c298c422c4537ea0 (patch)
treea77f15d7897c9f1f23db3d54e859cba3a7a56822 /parser.hpp
parent4367821606962df980f5aa0823575856796b16fc (diff)
parse files
Diffstat (limited to 'parser.hpp')
-rw-r--r--parser.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/parser.hpp b/parser.hpp
index 2aee82a..588315d 100644
--- a/parser.hpp
+++ b/parser.hpp
@@ -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) {