Skip to content
Closed

test #112

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions include/mcpp/block.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

Check notice on line 1 in include/mcpp/block.h

View workflow job for this annotation

GitHub Actions / cpp-linter

Run clang-format on include/mcpp/block.h

File include/mcpp/block.h does not conform to Custom style guidelines. (lines 15, 16)

#include <ostream>

Expand All @@ -12,7 +12,8 @@
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.
Expand Down Expand Up @@ -40,7 +41,7 @@
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.
Expand Down
Loading