From 5d8f4b4b92ceb5a0a94829ad988d393551d84c22 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 22 Jan 2026 21:03:40 -0500 Subject: [PATCH] xo-reader2: working on example parser repl --- include/xo/tokenizer2/TokenizerError.hpp | 2 +- include/xo/tokenizer2/scan_result.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/xo/tokenizer2/TokenizerError.hpp b/include/xo/tokenizer2/TokenizerError.hpp index a1cb99ee..b8a50988 100644 --- a/include/xo/tokenizer2/TokenizerError.hpp +++ b/include/xo/tokenizer2/TokenizerError.hpp @@ -99,7 +99,7 @@ namespace xo { size_t error_pos_ = 0; ///@} - }; /*error_token*/ + }; inline std::ostream & operator<< (std::ostream & os, diff --git a/include/xo/tokenizer2/scan_result.hpp b/include/xo/tokenizer2/scan_result.hpp index 249154f1..45718c5c 100644 --- a/include/xo/tokenizer2/scan_result.hpp +++ b/include/xo/tokenizer2/scan_result.hpp @@ -28,9 +28,9 @@ namespace xo { **/ class scan_result { public: - using CharT = char; + //using CharT = char; using token_type = Token; - using span_type = xo::mm::span; + using span_type = xo::mm::span; using error_type = TokenizerError; using input_state_type = TkInputState;