We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4219d8 commit c68dceeCopy full SHA for c68dcee
1 file changed
cpp2rust/converter/converter.cpp
@@ -1743,7 +1743,10 @@ void Converter::EmitArgList(const CallInfo &info) {
1743
}
1744
PushBracket push(*this, !info.is_libc_passthrough);
1745
for (auto *arg : info.variadic_args) {
1746
- ConvertVariadicArg(arg);
+ {
1747
+ PushParen p(*this);
1748
+ ConvertVariadicArg(arg);
1749
+ }
1750
if (!info.is_libc_passthrough) {
1751
StrCat(".into()");
1752
0 commit comments