Skip to content

Commit

Permalink
#2216: Remove fmt::runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobDomagala authored and cwschilly committed Sep 20, 2024
1 parent dddffbd commit d429bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/configs/debug/debug_print.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ static inline void debugPrintImpl(NodeType node, Arg&& arg, Args&&... args) {
constexpr auto mask = ModeEnum::terse | ModeEnum::normal | ModeEnum::verbose;
constexpr auto level = mod & mask;
if (level <= vt::debug::preConfig()->vt_debug_level_val) {
auto user = fmt::format(fmt::runtime(std::forward<Arg>(arg)),std::forward<Args>(args)...);
auto user = fmt::format(std::forward<Arg>(arg),std::forward<Args>(args)...);
std::string debug_level = "";
if (level == ModeEnum::terse) {
debug_level = "(t)";
Expand Down

0 comments on commit d429bdd

Please sign in to comment.