summaryrefslogtreecommitdiff
path: root/src/expand/stringify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expand/stringify.cpp')
-rw-r--r--src/expand/stringify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expand/stringify.cpp b/src/expand/stringify.cpp
index cbb5c65c..06c65c02 100644
--- a/src/expand/stringify.cpp
+++ b/src/expand/stringify.cpp
@@ -17,7 +17,7 @@ class CExpander:
Token tok;
::std::string rv;
- auto lex = TTStream(tt);
+ auto lex = TTStream(sp, tt);
while( GET_TOK(tok, lex) != TOK_EOF )
{
if(!rv.empty())
@@ -25,7 +25,7 @@ class CExpander:
rv += tok.to_str();
}
- return box$( TTStreamO(TokenTree(Token(TOK_STRING, mv$(rv)))) );
+ return box$( TTStreamO(sp, TokenTree(Token(TOK_STRING, mv$(rv)))) );
}
};