Browse Source

Added IsExplicit support to ASTConverter.

pull/234/head
triton 12 years ago
parent
commit
f5e66ba439
  1. 1
      src/Core/Parser/ASTConverter.cs

1
src/Core/Parser/ASTConverter.cs

@ -848,6 +848,7 @@ namespace CppSharp @@ -848,6 +848,7 @@ namespace CppSharp
_method.IsStatic = decl.IsStatic;
_method.IsConst = decl.IsConst;
_method.IsImplicit = decl.IsImplicit;
_method.IsExplicit = decl.IsExplicit;
_method.IsOverride = decl.IsOverride;
_method.Kind = VisitCXXMethodKind(decl.MethodKind);

Loading…
Cancel
Save