From ebfb2c233b64675973feeff99f8fbeca757ddcd5 Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 20 Oct 2013 16:16:33 +0100 Subject: [PATCH] Removed the ABI setters since this is provided per layout anymore. --- src/Parser/Parser.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Parser/Parser.cpp b/src/Parser/Parser.cpp index 9e1f08ad..7f3a8b05 100644 --- a/src/Parser/Parser.cpp +++ b/src/Parser/Parser.cpp @@ -491,7 +491,6 @@ void Parser::WalkVTable(clang::CXXRecordDecl* RD, CppSharp::AST::Class^ C) { case TargetCXXABI::Microsoft: { - C->Layout->ABI = CppSharp::AST::CppAbi::Microsoft; MicrosoftVFTableContext VTContext(*AST); auto VFPtrs = VTContext.getVFPtrOffsets(RD); @@ -513,7 +512,6 @@ void Parser::WalkVTable(clang::CXXRecordDecl* RD, CppSharp::AST::Class^ C) } case TargetCXXABI::GenericItanium: { - C->Layout->ABI = CppSharp::AST::CppAbi::Itanium; VTableContext VTContext(*AST); auto& VTLayout = VTContext.getVTableLayout(RD);