mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-07-03 02:26:48 +08:00
clang-format and clang-tidy fixes for 02439b57
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user