Add missing typename specifier

This commit is contained in:
Jonathan G Rennison
2024-02-21 00:48:41 +00:00
parent a7c7e3d618
commit 4469925605

View File

@@ -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();
}