Skip to content
Snippets Groups Projects
Commit 13d2bf2a authored by Liam Keegan's avatar Liam Keegan Committed by Santiago Ospina De Los Ríos
Browse files

- replace unicode char with ascii space

- was causing compile error with clang due to '\xC2', '\xA0' chars:
  - Dune::Logging::format_string<char, 'T', 'i', 'm', 'e', ' ', 'S', 't', 'e', 'p', ' ', '{', ':', '.', '2', 'e', '}', ' ', '+', ' ', '{', ':', '.', '2', 'e', '}', '\xC2', '\xA0', '-', '>', ' ', '{', ':', '.', '2', 'e', '}'>, 0>'
parent 58f72d73
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,7 @@ ModelMultiDomainDiffusionReaction<Traits>::
std::size_t max_comps(0);
for (std::size_t i = 0; i < gfs->degree(); i++)
max_comps = std::max(max_comps,gfs->child(i).degree());
MBE mbe((int)pow(3, dim)*max_comps);
_logger.trace("create spatial grid operator {}"_fmt, op);
......@@ -386,7 +386,7 @@ ModelMultiDomainDiffusionReaction<Traits>::step()
double max_error = std::numeric_limits<double>::max();
auto states_after = _states;
_logger.info("Time Step {:.2e} + {:.2e} -> {:.2e}"_fmt,
_logger.info("Time Step {:.2e} + {:.2e} -> {:.2e}"_fmt,
current_time(),
dt,
current_time() + dt);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment