mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
ELF: fix sh_flag bitset enum
This commit is contained in:
parent
02d22dca95
commit
f7d08d3371
1 changed files with 3 additions and 3 deletions
|
@ -49,9 +49,9 @@ enum class sec_type : u32
|
||||||
|
|
||||||
enum class sh_flag : u32
|
enum class sh_flag : u32
|
||||||
{
|
{
|
||||||
shf_write = 1,
|
shf_write,
|
||||||
shf_alloc = 2,
|
shf_alloc,
|
||||||
shf_execinstr = 4,
|
shf_execinstr,
|
||||||
|
|
||||||
__bitset_enum_max
|
__bitset_enum_max
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue