Skip to content

Commit

Permalink
Exposed the unsigned value on EnumConstantDecl. (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
PathogenDavid authored Aug 5, 2020
1 parent b4f4886 commit 2712e6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sources/ClangSharp/Cursors/Decls/EnumConstantDecl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ internal EnumConstantDecl(CXCursor handle) : base(handle, CXCursorKind.CXCursor_

public long InitVal => Handle.EnumConstantDeclValue;

public ulong UnsignedInitVal => Handle.EnumConstantDeclUnsignedValue;

public bool IsNegative => Handle.IsNegative;

public bool IsNonNegative => Handle.IsNonNegative;
Expand Down

0 comments on commit 2712e6b

Please sign in to comment.