Skip to content

Commit 0c70c97

Browse files
committed
Fix typo
1 parent 60a7e0e commit 0c70c97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/enum19.lib/enum19/Enum.ostream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace enum19 {
88

99
template<class Enum> auto enumNameOstream(std::ostream& out, const Enum& e) -> std::ostream& {
10-
auto underlying = static_cast<std::underlying_type_t<T>>(e);
10+
auto underlying = static_cast<std::underlying_type_t<Enum>>(e);
1111
return out << valueName(e) << " (" << underlying << ")";
1212
}
1313

0 commit comments

Comments
 (0)