Skip to content

Commit

Permalink
Fix cpp lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
AshishYUO committed Nov 15, 2022
1 parent 5990417 commit 02439b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion divide_and_conquer/strassen_matrix_multiplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 02439b5

Please sign in to comment.