Skip to content

Commit 27fd2af

Browse files
committed
Reorder CallInfo fields
1 parent 06097f8 commit 27fd2af

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
@@ -235,11 +235,11 @@ class Converter : public clang::RecursiveASTVisitor<Converter> {
235235
};
236236

237237
struct CallInfo {
238+
std::vector<CallArg> args;
239+
std::vector<clang::Expr *> variadic_args;
238240
clang::Expr *callee;
239241
bool is_variadic;
240242
bool is_fn_ptr_call;
241-
std::vector<CallArg> args;
242-
std::vector<clang::Expr *> variadic_args;
243243
};
244244

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

0 commit comments

Comments
 (0)