diff options
Diffstat (limited to 'lib/Expr/Lexer.cpp')
-rw-r--r-- | lib/Expr/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Expr/Lexer.cpp b/lib/Expr/Lexer.cpp index 95d6072b..9859ff36 100644 --- a/lib/Expr/Lexer.cpp +++ b/lib/Expr/Lexer.cpp @@ -54,7 +54,7 @@ const char *Token::getKindName() const { void Token::dump() { llvm::errs() << "(Token \"" << getKindName() << "\" " - << (void*) start << " " << length << " " + << (const void*) start << " " << length << " " << line << " " << column << ")"; } |