From ca2211fcbab8e3bf521046ee99ea6e8bec3cf5eb Mon Sep 17 00:00:00 2001 From: wawanbreton <wawanbreton@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:04:30 +0000 Subject: [PATCH] Apply clang-format --- src/LayerPlan.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/LayerPlan.cpp b/src/LayerPlan.cpp index dcc92a4f40..7c8eef7ada 100644 --- a/src/LayerPlan.cpp +++ b/src/LayerPlan.cpp @@ -57,15 +57,14 @@ GCodePath* LayerPlan::getLatestPathWithConfig( { return &paths.back(); } - paths.emplace_back( - GCodePath{ .z_offset = z_offset, - .config = config, - .mesh = current_mesh_, - .space_fill_type = space_fill_type, - .flow = flow, - .width_factor = width_factor, - .spiralize = spiralize, - .speed_factor = speed_factor }); + paths.emplace_back(GCodePath{ .z_offset = z_offset, + .config = config, + .mesh = current_mesh_, + .space_fill_type = space_fill_type, + .flow = flow, + .width_factor = width_factor, + .spiralize = spiralize, + .speed_factor = speed_factor }); GCodePath* ret = &paths.back(); ret->skip_agressive_merge_hint = mode_skip_agressive_merge_;