This commit is contained in:
Shunsuke Shibayama 2022-08-18 18:07:33 +09:00
parent 842fe10353
commit 53f665355b
2 changed files with 2 additions and 19 deletions

View file

@ -53,7 +53,6 @@ pub enum CodeObjFlags {
FutureAnnotations = 0x10_0000,
// Erg-specific flags
EvmDynParam = 0x1000_0000,
EvmDynamic = 0x2000_0000,
EvmNoGC = 0x4000_0000,
Illegal = 0x0000,
}
@ -82,7 +81,6 @@ impl From<u32> for CodeObjFlags {
0x10_0000 => Self::FutureAnnotations,
// EVM flags
0x1000_0000 => Self::EvmDynParam,
0x2000_0000 => Self::EvmDynamic,
0x4000_0000 => Self::EvmNoGC,
_ => Self::Illegal,
}