Skip to content

Commit a605853

Browse files
committed
Reorder CallInfo fields
1 parent be78090 commit a605853

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp2rust/converter/converter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,11 @@ class Converter : public clang::RecursiveASTVisitor<Converter> {
240240
};
241241

242242
struct CallInfo {
243+
std::vector<CallArg> args;
244+
std::vector<clang::Expr *> variadic_args;
243245
clang::Expr *callee;
244246
bool is_variadic;
245247
bool is_fn_ptr_call;
246-
std::vector<CallArg> args;
247-
std::vector<clang::Expr *> variadic_args;
248248
};
249249

250250
CallInfo CollectCallInfo(clang::CallExpr *expr);

0 commit comments

Comments
 (0)