@@ -583,7 +583,6 @@ MacroBuiltin::include_str_handler (location_t invoc_locus,
583
583
auto node = AST::SingleASTNode (make_string (invoc_locus, str));
584
584
auto str_tok = make_token (Token::make_string (invoc_locus, std::move (str)));
585
585
586
- // FIXME: Do not return an empty token vector here
587
586
return AST::Fragment ({node}, std::move (str_tok));
588
587
}
589
588
@@ -785,7 +784,6 @@ MacroBuiltin::env_handler (location_t invoc_locus, AST::MacroInvocData &invoc)
785
784
auto tok
786
785
= make_token (Token::make_string (invoc_locus, std::move (env_value)));
787
786
788
- // FIXME: Do not return an empty token vector here
789
787
return AST::Fragment ({node}, std::move (tok));
790
788
}
791
789
@@ -824,7 +822,6 @@ MacroBuiltin::cfg_handler (location_t invoc_locus, AST::MacroInvocData &invoc)
824
822
auto tok = make_token (
825
823
Token::make (result ? TRUE_LITERAL : FALSE_LITERAL, invoc_locus));
826
824
827
- // FIXME: Do not return an empty token vector here
828
825
return AST::Fragment ({literal_exp}, std::move (tok));
829
826
}
830
827
@@ -912,7 +909,6 @@ MacroBuiltin::line_handler (location_t invoc_locus, AST::MacroInvocData &)
912
909
auto tok
913
910
= make_token (Token::make_int (invoc_locus, std::to_string (current_line)));
914
911
915
- // FIXME: Do not return an empty token vector here
916
912
return AST::Fragment ({line_no}, std::move (tok));
917
913
}
918
914
0 commit comments