Skip to content

Commit

Permalink
remove more warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 committed Jul 31, 2024
1 parent da2fb5a commit 4a3f79a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/solvers/mg_solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,13 +394,13 @@ class MGSolver {
PARTHENON_FAIL("Unknown solver type.");
}

auto decorate_task_name = [partition, level](const std::string &in, auto b) {
return std::make_tuple(in + "(p:" + std::to_string(partition) +
", l:" + std::to_string(level) + ")",
1, b);
};
// auto decorate_task_name = [partition, level](const std::string &in, auto b) {
// return std::make_tuple(in + "(p:" + std::to_string(partition) +
// ", l:" + std::to_string(level) + ")",
// 1, b);
// };

//#define BTF(...) decorate_task_name(TF(__VA_ARGS__))
// #define BTF(...) decorate_task_name(TF(__VA_ARGS__))
#define BTF(...) TF(__VA_ARGS__)
bool multilevel = (level != min_level);

Expand Down

0 comments on commit 4a3f79a

Please sign in to comment.