Skip to content

Commit

Permalink
replace boost::format with hpx::util::format
Browse files Browse the repository at this point in the history
  • Loading branch information
biddisco committed Sep 21, 2017
1 parent 52c57eb commit fc4769a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/runtime/threads/policies/parse_affinity_options.cpp
Expand Up @@ -899,11 +899,11 @@ namespace hpx { namespace threads { namespace detail
if (any(affinities[num_thread]))
{
HPX_THROWS_IF(ec, bad_parameter,
"decode_balancednuma_distribution",
boost::str(boost::format(
"decode_numabalanced_distribution",
hpx::util::format(
"affinity mask for thread %1% has "
"already been set"
) % num_thread));
"already been set",
num_thread));
return;
}
num_pus[num_thread] = t.get_pu_number(num_core + used_cores, num_pu);
Expand Down

0 comments on commit fc4769a

Please sign in to comment.