Skip to content
Snippets Groups Projects
Commit b665e220 authored by Santiago Ospina De Los Ríos's avatar Santiago Ospina De Los Ríos
Browse files

[!15] - replace unicode char with ascii space

Merge branch 'remove_non_ascii_chars' into 'master'

ref:copasi/dune-copasi

-   was causing compile error with clang on linux for me due to
    `'\xC2', '\xA0'` chars not being constexpr:
    -   `Dune::Logging::format_string<char, 'T', 'i', 'm', 'e', ' ', 'S', 't', 'e', 'p', ' ', '{', ':', '.', '2', 'e', '}', ' ', '+', ' ', '{', ':', '.', '2', 'e', '}', '\xC2', '\xA0', '-', '>', ' ', '{', ':', '.', '2', 'e', '}'>, 0>'`

See merge request [!15]

  [!15]: gitlab.dune-project.org/copasi/dune-copasi/merge_requests/15
parents 58f72d73 13d2bf2a
No related branches found
No related tags found
1 merge request!15- replace unicode char with ascii space
Pipeline #21738 canceled
......@@ -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