diff options
Diffstat (limited to '')
-rw-r--r-- | server/lexer/details/parse.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/server/lexer/details/parse.hpp b/server/lexer/details/parse.hpp index 72da234..6a8688b 100644 --- a/server/lexer/details/parse.hpp +++ b/server/lexer/details/parse.hpp @@ -11,6 +11,14 @@ #include <string_view> namespace math::server::lexer::details { +namespace impl { + +std::optional<double> std_parse_number(const std::string_view&, std::string_view&); +std::optional<double> std_parse_number(const std::string_view&); +std::optional<double> boost_parse_number(const std::string_view&, std::string_view&); +std::optional<double> boost_parse_number(const std::string_view&); + +} // Exposed for testing: std::string_view parse_whitespace(const std::string_view&); |