Fix cpp lint error

This commit is contained in:
Ashish Daulatabad 2022-11-15 10:47:10 +05:30
parent 5990417ede
commit 02439b57d8

View File

@ -5,7 +5,7 @@
#include <vector>
/// Complement of 0 is a max integer.
#define MAX_SIZE ~0ULL
constexpr size_t MAX_SIZE = ~0ULL;
/**
* @brief Matrix class.
*/