Assigns `flags` to the section (replaces all existing flags).
| 271 | |
| 272 | //! Assigns `flags` to the section (replaces all existing flags). |
| 273 | ASMJIT_INLINE_NODEBUG void assign_flags(SectionFlags flags) noexcept { _internal_uint16_data = uint16_t(flags); } |
| 274 | |
| 275 | //! Adds `flags` to the section flags. |
| 276 | ASMJIT_INLINE_NODEBUG void add_flags(SectionFlags flags) noexcept { _internal_uint16_data = uint16_t(_internal_uint16_data | uint32_t(flags)); } |