diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2025-04-28 09:31:42 +0100 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2025-04-28 09:31:42 +0100 |
commit | 4363088a85a219c6e101e158d4634cd490a8c72d (patch) | |
tree | 39494f3a4f34dfc4529287ea2f8d57350d201a27 /lib/stream_support.h | |
parent | Fix space between operator"" and its name (diff) | |
download | ilt-4363088a85a219c6e101e158d4634cd490a8c72d.tar.bz2 ilt-4363088a85a219c6e101e158d4634cd490a8c72d.tar.xz ilt-4363088a85a219c6e101e158d4634cd490a8c72d.zip |
Fix all warnings in enumeration details code/tests
Diffstat (limited to 'lib/stream_support.h')
-rw-r--r-- | lib/stream_support.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<E>::typeName << "::" << EnumDetails<E>::to_string(e).value(); + return s << EnumTypeDetails<E>::TYPE_NAME << "::" << EnumDetails<E>::toString(e).value(); } template<typename T> |