From 6e0f2f5abc4742e252ab25d4d21b745ee50292ed Mon Sep 17 00:00:00 2001 From: Sebastian Proell Date: Fri, 11 Aug 2023 11:04:20 +0200 Subject: [PATCH] Don't use implementation-reserved double underscores --- include/deal.II/trilinos/nox.templates.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/trilinos/nox.templates.h b/include/deal.II/trilinos/nox.templates.h index 9004c5ced4..98df8ffb7e 100644 --- a/include/deal.II/trilinos/nox.templates.h +++ b/include/deal.II/trilinos/nox.templates.h @@ -836,17 +836,17 @@ namespace TrilinosWrappers else { // unwrap the various vectors - const VectorType &x__ = *dynamic_cast< + const VectorType &x = *dynamic_cast< const internal::NOXWrappers::Vector *>( &problem.getSolutionGroup().getX()); - const VectorType &f__ = *dynamic_cast< + const VectorType &f = *dynamic_cast< const internal::NOXWrappers::Vector *>( &problem.getSolutionGroup().getF()); - // forward to the user-provided function and checks + // forward to the user-provided function and check // convergence const auto state = this->check_iteration_status( - problem.getNumIterations(), f__.l2_norm(), x__, f__); + problem.getNumIterations(), f.l2_norm(), x, f); // translate the returned value back to Trilinos data // structure -- 2.39.5