From 9e901dbc593700fd1ca8b7f4638e7096c505e1de Mon Sep 17 00:00:00 2001 From: Abdullah Tahiri Date: Mon, 5 Mar 2018 14:43:04 +0100 Subject: [PATCH] GCS: Fix report view formating and duplicated endline --- src/Mod/Sketcher/App/planegcs/GCS.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Sketcher/App/planegcs/GCS.cpp b/src/Mod/Sketcher/App/planegcs/GCS.cpp index 3f1d517c78..4e8bee11c9 100644 --- a/src/Mod/Sketcher/App/planegcs/GCS.cpp +++ b/src/Mod/Sketcher/App/planegcs/GCS.cpp @@ -170,7 +170,7 @@ void LogString(std::string str) std::stringstream stream; #endif - stream << str << " =" << std::endl; + stream << str << std::endl; #ifdef _DEBUG_TO_FILE stream.flush(); @@ -3809,7 +3809,7 @@ int System::diagnose(Algorithm alg) << ", Pivot Threshold: " << qrpivotThreshold << ", Params: " << paramsNum << ", Constr: " << constrNum - << ", Rank: " << rank << "\n"; + << ", Rank: " << rank; } else { stream @@ -3819,7 +3819,7 @@ int System::diagnose(Algorithm alg) #ifdef EIGEN_VECTORIZE << ", Vectorization: On" #endif - << ", Empty Sketch, nothing to solve" << "\n"; + << ", Empty Sketch, nothing to solve"; } const std::string tmp = stream.str();