From 4363088a85a219c6e101e158d4634cd490a8c72d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 28 Apr 2025 09:31:42 +0100 Subject: Fix all warnings in enumeration details code/tests --- lib/stream_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/stream_support.h') diff --git a/lib/stream_support.h b/lib/stream_support.h index 5f276fd..7f1df96 100644 --- a/lib/stream_support.h +++ b/lib/stream_support.h @@ -81,7 +81,7 @@ namespace std { inline std::ostream & operator<<(std::ostream & s, const E & e) { - return s << EnumTypeDetails::typeName << "::" << EnumDetails::to_string(e).value(); + return s << EnumTypeDetails::TYPE_NAME << "::" << EnumDetails::toString(e).value(); } template -- cgit v1.2.3