Skip to content

Commit

Permalink
Merge pull request #193 from tromey/endian-constant-fix
Browse files Browse the repository at this point in the history
fix DW_END_* constants
  • Loading branch information
fitzgen authored Apr 3, 2017
2 parents 97a1789 + 6ff5279 commit d56ab3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,9 @@ dw!(DwDs(u8) {
/// The encodings of the constants used in the `DW_AT_endianity` attribute.
/// See Section 7.8, Figure 27.
dw!(DwEnd(u8) {
DW_END_public = 0x00,
DW_END_protected = 0x01,
DW_END_private = 0x02,
DW_END_default = 0x00,
DW_END_big = 0x01,
DW_END_little = 0x02,
DW_END_lo_user = 0x40,
DW_END_hi_user = 0xff,
});
Expand Down

0 comments on commit d56ab3a

Please sign in to comment.