Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/openvic-simulation/core/object/Colour.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,7 @@ struct fmt::formatter<T> {
auto write_value = [&](T::value_type const& comp) {
ctx.advance_to(out);
switch (_value_format_type) {
case value_format_type::none: break;
case value_format_type::value: _colour_value.format(comp, ctx); break;
case value_format_type::integer: _integer.format(comp, ctx); break;
case value_format_type::floating: _floating.format(double(comp) / T::max_value, ctx); break;
Expand Down
Loading