From f6e3fa466357a865310eb382aed55c5db8dab029 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 10 Mar 2023 07:14:09 -0500 Subject: make parser static; tested msp430 build --- libalee/parser.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libalee/parser.hpp') diff --git a/libalee/parser.hpp b/libalee/parser.hpp index 4b14d64..f211781 100644 --- a/libalee/parser.hpp +++ b/libalee/parser.hpp @@ -28,12 +28,12 @@ class Parser public: constexpr static int UnknownWord = -1; - int parse(State&, const char *); - int parseSource(State&); + static int parse(State&, const char *); + static int parseSource(State&); private: - int parseWord(State&, Word); - int parseNumber(State&, Word); + static int parseWord(State&, Word); + static int parseNumber(State&, Word); }; #endif // ALEEFORTH_PARSER_HPP -- cgit v1.2.3