about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/expr/Lexer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/expr/Lexer.h b/include/expr/Lexer.h
index 9319b487..290d59eb 100644
--- a/include/expr/Lexer.h
+++ b/include/expr/Lexer.h
@@ -70,6 +70,8 @@ namespace expr {
 
     // dump - Dump the token to stderr.
     void dump();
+
+    Token() : kind(Unknown), start(nullptr) {}
   };
 
   /// Lexer - Interface for lexing tokens from a .kquery language file.