From 392ad49073933a23dcbc73fb061570053cf89d22 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Wed, 10 May 2017 08:51:16 +0200 Subject: [PATCH] no need to escape % in stream usage --- src/SIM/AdaptiveSIM.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SIM/AdaptiveSIM.C b/src/SIM/AdaptiveSIM.C index b3f20c9a..df36960a 100644 --- a/src/SIM/AdaptiveSIM.C +++ b/src/SIM/AdaptiveSIM.C @@ -370,17 +370,17 @@ bool AdaptiveSIM::adaptMesh (int iStep) switch (threshold) { case NONE: - IFEM::cout << beta <<"\% of all " + IFEM::cout << beta <<"% of all " << (scheme < 2 ? "elements" : "basis functions"); break; case MAXIMUM: - IFEM::cout << beta <<"\% of max error ("<< limit << ")"; + IFEM::cout << beta <<"% of max error ("<< limit << ")"; break; case AVERAGE: - IFEM::cout << beta <<"\% of average error ("<< limit <<")"; + IFEM::cout << beta <<"% of average error ("<< limit <<")"; break; case MINIMUM: - IFEM::cout << beta <<"\% of min error ("<< limit <<")"; + IFEM::cout << beta <<"% of min error ("<< limit <<")"; break; } IFEM::cout << std::endl;