diff --git a/include/tsid/solvers/solver-HQP-eiquadprog-rt.hpp b/include/tsid/solvers/solver-HQP-eiquadprog-rt.hpp index b7f5624b..e819c6d7 100644 --- a/include/tsid/solvers/solver-HQP-eiquadprog-rt.hpp +++ b/include/tsid/solvers/solver-HQP-eiquadprog-rt.hpp @@ -51,7 +51,7 @@ class TSID_DLLAPI SolverHQuadProgRT : public SolverHQPBase { // TODO: change eiquadprog-rt to new API /** Retrieve the matrices describing a QP problem from the problem data. */ void retrieveQPData(const HQPData& /*problemData*/, - const bool /*hessianRegularization = true*/){}; + const bool /*hessianRegularization = true*/) {}; // /** Return the QP data object. */ // const QPDataQuadProg getQPData() const { return m_qpData; } diff --git a/src/utils/stop-watch.cpp b/src/utils/stop-watch.cpp index 6d89c233..5c326188 100644 --- a/src/utils/stop-watch.cpp +++ b/src/utils/stop-watch.cpp @@ -185,18 +185,12 @@ void Stopwatch::report_all(int precision, std::ostream& output) { output << "\n" << std::setw(STOP_WATCH_MAX_NAME_LENGTH) << std::left << "*** PROFILING RESULTS [ms] "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "min" - << " "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "avg" - << " "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "max" - << " "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "lastTime" - << " "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "nSamples" - << " "; - output << std::setw(STOP_WATCH_TIME_WIDTH) << "totalTime" - << " ***\n"; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "min" << " "; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "avg" << " "; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "max" << " "; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "lastTime" << " "; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "nSamples" << " "; + output << std::setw(STOP_WATCH_TIME_WIDTH) << "totalTime" << " ***\n"; map::iterator it; for (it = records_of->begin(); it != records_of->end(); ++it) { if (it->second.stops > 0) report(it->first, precision, output);