clang-format and clang-tidy fixes for 02439b57

This commit is contained in:
David
2022-11-15 05:18:13 +00:00
parent 4da11dccf8
commit 9243c4ff90
2 changed files with 29 additions and 25 deletions

View File

@@ -26,7 +26,7 @@ class Matrix {
template <typename Integer,
typename = typename std::enable_if<
std::is_integral<Integer>::value, Integer>::type>
Matrix(const Integer size) {
explicit Matrix(const Integer size) {
for (size_t i = 0; i < size; ++i) {
_mat.emplace_back(std::vector<T>(size, 0));
}