fix: [[nodiscard]] removed from a format() function

This commit is contained in:
Mateusz Pusz
2022-12-23 18:06:38 +01:00
parent 9ad2cd5986
commit 0987fffe99

View File

@@ -418,7 +418,7 @@ public:
}
template<typename FormatContext>
[[nodiscard]] auto format(const quantity& q, FormatContext& ctx)
auto format(const quantity& q, FormatContext& ctx)
{
// process dynamic width and precision
if (specs.global.dynamic_width_index >= 0)