Skip to content

Commit

Permalink
refactor(to_cpp1): change true for false
Browse files Browse the repository at this point in the history
  • Loading branch information
JohelEGP committed Nov 13, 2023
1 parent 62809a2 commit e01a933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/to_cpp1.h
Original file line number Diff line number Diff line change
Expand Up @@ -4594,7 +4594,7 @@ class cppfront
{
auto list = std::string{""};
if (parent->specialization_template_arguments) {
list = print_to_string(*parent->specialization_template_arguments, false, true, false, false);
list = print_to_string(*parent->specialization_template_arguments, false, false, false, false);
}
else if (parent->template_parameters) {
auto separator = std::string{"<"};
Expand Down

0 comments on commit e01a933

Please sign in to comment.