Skip to content

Commit 01516c1

Browse files
committed
Fix build
1 parent fdbfab3 commit 01516c1

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
@@ -437,7 +437,7 @@ bool Converter::ConvertLambdaVarDecl(clang::VarDecl *decl) {
437437
return false;
438438
}
439439

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

0 commit comments

Comments
 (0)