Skip to content

Commit 17527ae

Browse files
committed
Fix the requires clause of toString(Enum)
1 parent a96cdac commit 17527ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mrdocs/Metadata/Symbol/EnumToString.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace mrdocs {
2727
*/
2828
template <typename Enum>
2929
requires std::is_enum_v<Enum>
30-
&& boost::describe::has_describe_enumerators<Enum>
30+
&& boost::describe::has_describe_enumerators<Enum>::value
3131
std::string
3232
toString(Enum e)
3333
{

0 commit comments

Comments
 (0)