Skip to content

Commit 1975b99

Browse files
committed
Fix build
1 parent 942aad3 commit 1975b99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp2rust/converter/converter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ bool Converter::ConvertLambdaVarDecl(clang::VarDecl *decl) {
436436
return false;
437437
}
438438

439-
void ConvertVarDeclInitializer(clang::VarDecl *decl) {
439+
void Converter::ConvertVarDeclInitializer(clang::VarDecl *decl) {
440440
if (decl->hasInit()) {
441441
ConvertVarInit(decl->getType(), decl->getInit());
442442
} else if (!clang::isa<clang::ParmVarDecl>(decl)) {

0 commit comments

Comments
 (0)