thanks for nothing microsoft

This commit is contained in:
ouwou 2020-09-24 02:58:05 -04:00
parent a8630f53b1
commit 9b78e829b5

View File

@ -42,7 +42,7 @@ typename std::enable_if<Bitwise<T>::enable, T>::type operator&=(T &a, T b) {
template<typename T>
typename std::enable_if<Bitwise<T>::enable, T>::type operator~(T a) {
return static_cast<T>(~static_cast<std::underlying_type<T>::type>(a));
return static_cast<T>(~static_cast<typename std::underlying_type<T>::type>(a));
}
template<typename T>