We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbfab3 commit 01516c1Copy full SHA for 01516c1
1 file changed
cpp2rust/converter/converter.cpp
@@ -437,7 +437,7 @@ bool Converter::ConvertLambdaVarDecl(clang::VarDecl *decl) {
437
return false;
438
}
439
440
-void ConvertVarDeclInitializer(clang::VarDecl *decl) {
+void Converter::ConvertVarDeclInitializer(clang::VarDecl *decl) {
441
if (decl->hasInit()) {
442
ConvertVarInit(decl->getType(), decl->getInit());
443
} else if (!clang::isa<clang::ParmVarDecl>(decl)) {
0 commit comments