| 22 | |
| 23 | constexpr unsigned int MYGUI_FLAG_NONE = 0; |
| 24 | constexpr unsigned int MYGUI_FLAG(uint8_t num) |
| 25 | { |
| 26 | return 1U << num; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | Analagous to std::map's operator[], i.e. it replicates map[key] = value. |
no outgoing calls
no test coverage detected