From 9c4df87bd7dcff12142c4e3ea706e61966c40bd2 Mon Sep 17 00:00:00 2001 From: nhatdongdang <144138246+nhatdongdang@users.noreply.github.com> Date: Tue, 18 Feb 2025 17:29:44 +0700 Subject: [PATCH] test --- include/mcpp/block.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/mcpp/block.h b/include/mcpp/block.h index 1e3ac36b..9f162654 100644 --- a/include/mcpp/block.h +++ b/include/mcpp/block.h @@ -12,7 +12,8 @@ class BlockType { int id; int mod; - constexpr BlockType(int id = 0, int modifier = 0) : id(id), mod(modifier){}; + constexpr BlockType(int id = 0, int modifier = 0) + : id(id), mod(modifier) {}; /** * @brief Equality comparison operator. @@ -40,7 +41,7 @@ class BlockType { bool operator!=(const BlockType& other) const; /** - * @brief Stream insertion operator for outputting the BlockType to an + * @brief Stream insertionoperator for outputting the BlockType to an * output stream. * * @param out The output stream to write to.