Skip to content

Commit

Permalink
Merge pull request #74 from S-o-T/fix_for_fmt8
Browse files Browse the repository at this point in the history
Add missing formatter
  • Loading branch information
alliepiper authored Jan 28, 2022
2 parents a72f248 + c9b1bda commit b1b6d73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nvbench/axes_metadata.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ const axis_base &axes_metadata::get_axis(std::string_view name,
NVBENCH_THROW(std::runtime_error,
"Axis '{}' type mismatch (expected {}, actual {}).",
name,
type,
axis.get_type());
axis_type_to_string(type),
axis.get_type_as_string());
}
return axis;
}
Expand All @@ -240,8 +240,8 @@ axis_base &axes_metadata::get_axis(std::string_view name,
NVBENCH_THROW(std::runtime_error,
"Axis '{}' type mismatch (expected {}, actual {}).",
name,
type,
axis.get_type());
axis_type_to_string(type),
axis.get_type_as_string());
}
return axis;
}
Expand Down

0 comments on commit b1b6d73

Please sign in to comment.