diff --git a/include/mcpp/block.h b/include/mcpp/block.h index 1e3ac36..9f16265 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.