diff options
Diffstat (limited to 'src/parse/tokenstream.cpp')
-rw-r--r-- | src/parse/tokenstream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/tokenstream.cpp b/src/parse/tokenstream.cpp index 901312a3..625f12db 100644 --- a/src/parse/tokenstream.cpp +++ b/src/parse/tokenstream.cpp @@ -141,7 +141,7 @@ Ident TokenStream::get_ident(Token tok) const return Ident(getHygiene(), tok.str()); } else if( tok.type() == TOK_INTERPOLATED_IDENT ) { - TODO(getPosition(), ""); + TODO(getPosition(), "get_ident from TOK_INTERPOLATED_IDENT"); } else { throw ParseError::Unexpected(*this, tok); |