diff options
author | ubsan <npmazzuca@gmail.com> | 2016-12-24 19:07:08 -0700 |
---|---|---|
committer | ubsan <npmazzuca@gmail.com> | 2016-12-24 19:07:08 -0700 |
commit | 0c14c734fa32014fd24297ccdbed927016185ffd (patch) | |
tree | ed4bbff4be39c44c57164641f4ed32b5ad4675f0 /src/expand/stringify.cpp | |
parent | d12a8a886caf2e0edf33c1af831b1df990d2c892 (diff) | |
download | mrust-0c14c734fa32014fd24297ccdbed927016185ffd.tar.gz |
No more tears!
No more DOS line endings or trailing whitespace either
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)))) ); } }; |