Skip to content

Commit

Permalink
Add missing typename specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
JGRennison committed Feb 21, 2024
1 parent a7c7e3d commit 4469925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/table/settings.h.preamble
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 4469925

Please sign in to comment.