From fa42611c3172e29fc0ce2d329d2d9f99371be18b Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Thu, 1 Jul 2021 06:46:32 +0200 Subject: [PATCH] Reformat to match the rest of the code --- src/config/config.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/config/config.h b/src/config/config.h index c0ff75b..a176534 100644 --- a/src/config/config.h +++ b/src/config/config.h @@ -1,13 +1,10 @@ -/* - config.h - Wrangler for assorted compile-time configuration and constants. - - */ - #pragma once +#include +/// Wrangler for assorted compile-time configuration and constants. namespace config { - // Max number of extruders - static constexpr uint8_t tool_count = 5U; +/// Max number of extruders +static constexpr uint8_t tool_count = 5U; -} +} // namespace config