diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-24 02:58:05 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-09-24 02:58:05 -0400 |
commit | 9b78e829b59b57d003f82eb85177453ef88e21ec (patch) | |
tree | 72fe328fdcc2f5efcdbbf2db3716f06a85fd9586 /util.hpp | |
parent | a8630f53b1b391cd2851955aa7585c53a996edd6 (diff) | |
download | abaddon-portaudio-9b78e829b59b57d003f82eb85177453ef88e21ec.tar.gz abaddon-portaudio-9b78e829b59b57d003f82eb85177453ef88e21ec.zip |
thanks for nothing microsoft
Diffstat (limited to 'util.hpp')
-rw-r--r-- | util.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |