enum-flags
enum-flags copied to clipboard
Add missing operator~
template <class E> constexpr auto operator~(E e1) noexcept -> typename std::enable_if<flags::is_flags<E>::value, flags::flags<E>>::type{ return ~flags::flags<E>(e1); }
Is there any reason this wasn't included to begin with?