summaryrefslogtreecommitdiff
path: root/src/expand/cfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expand/cfg.cpp')
-rw-r--r--src/expand/cfg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expand/cfg.cpp b/src/expand/cfg.cpp
index 8572b2e5..a2fca312 100644
--- a/src/expand/cfg.cpp
+++ b/src/expand/cfg.cpp
@@ -97,15 +97,15 @@ class CCfgExpander:
ERROR(sp, E0000, "cfg! doesn't take an identifier");
}
- auto lex = TTStream(tt);
+ auto lex = TTStream(sp, tt);
auto attrs = Parse_MetaItem(lex);
DEBUG("cfg!() - " << attrs);
if( check_cfg(sp, attrs) ) {
- return box$( TTStreamO(TokenTree({},TOK_RWORD_TRUE )) );
+ return box$( TTStreamO(sp, TokenTree({},TOK_RWORD_TRUE )) );
}
else {
- return box$( TTStreamO(TokenTree({},TOK_RWORD_FALSE)) );
+ return box$( TTStreamO(sp, TokenTree({},TOK_RWORD_FALSE)) );
}
}
};