From 50450e9d754f55af691fbbcaf91ceee92126cbe7 Mon Sep 17 00:00:00 2001 From: Roelof Oomen Date: Tue, 9 Jan 2024 08:35:18 +0100 Subject: [PATCH] clang-format --- tesseract_collision/vhacd/src/convex_decomposition_vhacd.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tesseract_collision/vhacd/src/convex_decomposition_vhacd.cpp b/tesseract_collision/vhacd/src/convex_decomposition_vhacd.cpp index c7d2448cdb1..c27053f5277 100644 --- a/tesseract_collision/vhacd/src/convex_decomposition_vhacd.cpp +++ b/tesseract_collision/vhacd/src/convex_decomposition_vhacd.cpp @@ -23,8 +23,9 @@ class ProgressCallback : public VHACD::IVHACD::IUserCallback const char* const stage, const char* operation) override { - std::cout << std::setfill(' ') << std::setw(3) << ceil(overallProgress) << "% " << "[ " << stage << " " - << std::setfill(' ') << std::setw(3) << ceil(stageProgress) << "% ] " << operation << std::endl; + std::cout << std::setfill(' ') << std::setw(3) << ceil(overallProgress) << "% " + << "[ " << stage << " " << std::setfill(' ') << std::setw(3) << ceil(stageProgress) << "% ] " << operation + << std::endl; } };