aboutsummaryrefslogtreecommitdiffstats
path: root/parser.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-24 19:09:53 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-24 19:09:53 -0500
commit0b88b4596e6265863e75e7aabcca52734e147fae (patch)
tree2210e75d0b5eff6e462770e5278a1baf504423b0 /parser.hpp
parent914a75b2097090595d12015b750f97dc55bf7dcd (diff)
compact implementation; runs on msp430
Diffstat (limited to 'parser.hpp')
-rw-r--r--parser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.hpp b/parser.hpp
index 8a322e2..5bcf3f9 100644
--- a/parser.hpp
+++ b/parser.hpp
@@ -28,7 +28,7 @@ class Parser
public:
constexpr static int UnknownWord = -1;
- int parse(State&, std::string_view&);
+ int parse(State&, const char *);
private:
int parseSource(State&);