diff options
Diffstat (limited to 'src/expand/stringify.cpp')
-rw-r--r-- | src/expand/stringify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expand/stringify.cpp b/src/expand/stringify.cpp index ce16847b..f43d896f 100644 --- a/src/expand/stringify.cpp +++ b/src/expand/stringify.cpp @@ -16,14 +16,14 @@ class CExpander: { Token tok; ::std::string rv; - + auto lex = TTStream(tt); while( GET_TOK(tok, lex) != TOK_EOF ) { rv += tok.to_str(); rv += " "; } - + return box$( TTStreamO(TokenTree(Token(TOK_STRING, mv$(rv)))) ); } }; |