Add missing typename specifier

pull/661/head
Jonathan G Rennison 3 months ago
parent a7c7e3d618
commit 4469925605

@ -69,7 +69,7 @@ constexpr T STUnwrap(T value)
}
template <typename T, std::enable_if_t<std::is_base_of<StrongTypedefBase, T>::value, int> = 0>
constexpr T::BaseType STUnwrap(T value)
constexpr typename T::BaseType STUnwrap(T value)
{
return value.base();
}

Loading…
Cancel
Save