Skip to content

Commit

Permalink
Another C++20 fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Aug 28, 2024
1 parent a732dbd commit b5e8b46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/seacas/libraries/suplib_cpp/iqsort.C
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright(C) 1999-2020, 2023 National Technology & Engineering Solutions
// Copyright(C) 1999-2020, 2023, 2024 National Technology & Engineering Solutions
// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
// NTESS, the U.S. Government retains certain rights in this software.
//
Expand Down Expand Up @@ -155,7 +155,7 @@ namespace {

template <typename T, typename INT> void check(const T v[], INT iv[], size_t N)
{
fmt::print(stderr, "Checking sort of {:n} values\n", N + 1);
fmt::print(stderr, fmt::runtime("Checking sort of {:n} values\n"), N + 1);
size_t i;
for (i = 1; i < N; i++) {
SMART_ASSERT(v[iv[i - 1]] <= v[iv[i]]);
Expand Down

0 comments on commit b5e8b46

Please sign in to comment.