Skip to content

Commit

Permalink
Fix build errors vs fmt 10 (#19459)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnimmer-tri authored May 22, 2023
1 parent 4429e90 commit 1ee1e1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion solvers/mosek_solver_internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <atomic>
#include <limits>

#include "drake/common/fmt_ostream.h"
#include "drake/common/never_destroyed.h"
#include "drake/math/quadratic_form.h"
#include "drake/solvers/aggregate_costs_constraints.h"
Expand Down Expand Up @@ -1251,7 +1252,8 @@ void ThrowForInvalidOption(MSKrescodee rescode, const std::string& option,
"https://docs.mosek.com/{version}/pythonapi/param-groups.html "
"for allowable values in python.",
fmt::arg("option", option), fmt::arg("value", val),
fmt::arg("code", rescode), fmt::arg("version", mosek_version)));
fmt::arg("code", fmt_streamed(rescode)),
fmt::arg("version", mosek_version)));
}
}

Expand Down

0 comments on commit 1ee1e1a

Please sign in to comment.