From e3be7ed2de57f76f05643f8061c61c8fce237bf1 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 19 Jan 2026 00:39:16 -0500 Subject: [PATCH] xo-reader: + DDefineSsm + utest --- include/xo/tokenizer2/Token.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xo/tokenizer2/Token.hpp b/include/xo/tokenizer2/Token.hpp index 0994e3b8..7ed490cc 100644 --- a/include/xo/tokenizer2/Token.hpp +++ b/include/xo/tokenizer2/Token.hpp @@ -132,7 +132,7 @@ namespace xo { /** token representing keyword @c type **/ static Token type() { return Token(tokentype::tk_type); } /** token representing keyword @c def **/ - static Token def() { return Token(tokentype::tk_def); } + static Token def_token() { return Token(tokentype::tk_def); } /** token representing keyword @c lambda **/ static Token lambda() { return Token(tokentype::tk_lambda); } /** token representing keyword @c if **/