Skip to content

Commit 02439b5

Browse files
committed
Fix cpp lint error
1 parent 5990417 commit 02439b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

divide_and_conquer/strassen_matrix_multiplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <vector>
66

77
/// Complement of 0 is a max integer.
8-
#define MAX_SIZE ~0ULL
8+
constexpr size_t MAX_SIZE = ~0ULL;
99
/**
1010
* @brief Matrix class.
1111
*/

0 commit comments

Comments
 (0)