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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expand/cfg.cpp b/src/expand/cfg.cpp
index 00e3921c..e59da886 100644
--- a/src/expand/cfg.cpp
+++ b/src/expand/cfg.cpp
@@ -99,10 +99,10 @@ class CCfgExpander:
DEBUG("cfg!() - " << attrs);
if( check_cfg(sp, attrs) ) {
- return box$( TTStreamO(TokenTree(TOK_RWORD_TRUE )) );
+ return box$( TTStreamO(TokenTree({},TOK_RWORD_TRUE )) );
}
else {
- return box$( TTStreamO(TokenTree(TOK_RWORD_FALSE)) );
+ return box$( TTStreamO(TokenTree({},TOK_RWORD_FALSE)) );
}
}
};