Releases: uyha/flag
Releases · uyha/flag
v0.3.1
v0.3
v0.2
This release moves all the functionality into a separate namespace river::flags
and the operators only work with enums that are marked as flags. Marking an enum as a flag can be done by:
- using IS_ENUM_FLAG macro:
IS_ENUM_FLAG(enum_name);
- specialize the variable template for that enum:
template<> constexpr bool river::flags::is_flag_v<enum_name> = true;
Second first release
v0.1.1 Move flag.hpp to include/river
First release
First release