Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ Checks: >
cppcoreguidelines-avoid-capturing-lambda-coroutines,
cppcoreguidelines-avoid-goto,
cppcoreguidelines-avoid-non-const-global-variables,
cppcoreguidelines-avoid-reference-coroutine-parameters
cppcoreguidelines-avoid-reference-coroutine-parameters,
cppcoreguidelines-explicit-virtual-functions
Comment thread
cvvergara marked this conversation as resolved.
Outdated

WarningsAsErrors: ''
HeaderFilterRegex: './include'
FormatStyle: none
InheritParentConfig: true
InheritParentConfig: true
Comment thread
cvvergara marked this conversation as resolved.
Outdated
4 changes: 2 additions & 2 deletions include/cpp_common/assert.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ class AssertFailedException : public std::exception {
const std::string str; ///< Holds what() we got as message

public:
virtual const char *what() const throw();
const char *what() const throw() override;
explicit AssertFailedException(std::string msg);
virtual ~AssertFailedException() throw() {}
~AssertFailedException() throw() override {}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
};

#endif // INCLUDE_CPP_COMMON_ASSERT_HPP_