Refactor code to be more compliant to modern C++ standards#108
Merged
Refactor code to be more compliant to modern C++ standards#108
Conversation
Contributor
There was a problem hiding this comment.
Cpp-linter Review
Used clang-format v12.0.0
Click here for the full clang-format patch
diff --git a/include/mcpp/block.h b/include/mcpp/block.h
index dc9ce79..747ae11 100644
--- a/include/mcpp/block.h
+++ b/include/mcpp/block.h
@@ -17 +17 @@ public:
- constexpr BlockType(uint8_t id = 0, uint8_t mod = 0) : id(id), mod(mod) {};
+ constexpr BlockType(uint8_t id = 0, uint8_t mod = 0) : id(id), mod(mod){};
diff --git a/src/connection.cpp b/src/connection.cpp
index d8d3368..1e049a4 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -36 +36 @@ std::string SocketConnection::resolve_hostname(const std::string& hostname) {
- struct addrinfo hints{};
+ struct addrinfo hints {};
Have any feedback or feature suggestions? Share it here.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Includes the following:
clang-tidywith included config and opportunity to enable in CIunique_ptrand add associated constructors