mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
9 lines
347 B
C
9 lines
347 B
C
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
enum _ENUM_UNDERLYING(uint32_t) _PACKED my_enum{ none = 0x0U,
|
|
positive = 0x1U,
|
|
negative = 0x2U,
|
|
neutral = 0x3U };
|