From d0f7f81e5a24c5c067bc00e5b1e7075ee6318e0b Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 4 Aug 2013 05:57:00 +0100 Subject: [PATCH] Added IsVirtual data to methods. --- src/Parser/Parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Parser/Parser.cpp b/src/Parser/Parser.cpp index 992b4733..8fac6436 100644 --- a/src/Parser/Parser.cpp +++ b/src/Parser/Parser.cpp @@ -749,6 +749,7 @@ CppSharp::AST::Method^ Parser::WalkMethodCXX(clang::CXXMethodDecl* MD) Method->Kind = GetMethodKindFromDecl(Name); Method->OperatorKind = GetOperatorKindFromDecl(Name); Method->IsStatic = MD->isStatic(); + Method->IsVirtual = MD->isVirtual(); WalkFunction(MD, Method);