Browse Source

Fixed the IsItaniumLikeAbi check.

pull/355/head
triton 11 years ago
parent
commit
8c962c2cb7
  1. 2
      src/Generator/Options.cs

2
src/Generator/Options.cs

@ -64,7 +64,7 @@ namespace CppSharp @@ -64,7 +64,7 @@ namespace CppSharp
public bool IgnoreParseWarnings;
public bool IgnoreParseErrors;
public bool IsItaniumLikeAbi { get { return Abi == CppAbi.Itanium || Abi == CppAbi.ARM; } }
public bool IsItaniumLikeAbi { get { return Abi != CppAbi.Microsoft; } }
public bool IsMicrosoftAbi { get { return Abi == CppAbi.Microsoft; } }
// Library options

Loading…
Cancel
Save