ELF: fix sh_flag bitset enum

This commit is contained in:
Nekotekina 2022-05-06 15:19:03 +03:00 committed by Ivan
parent 02d22dca95
commit f7d08d3371
1 changed files with 3 additions and 3 deletions

View File

@ -49,9 +49,9 @@ enum class sec_type : u32
enum class sh_flag : u32
{
shf_write = 1,
shf_alloc = 2,
shf_execinstr = 4,
shf_write,
shf_alloc,
shf_execinstr,
__bitset_enum_max
};