Remove MATRIX_IS_ON macro (#11330)

* Remove MATRIX_IS_ON macro

this macro is both incorrect and excessive given that macro_is_on()
exists

* Remove massdrop matrix.h
This commit is contained in:
xyzz 2020-12-29 16:45:04 -05:00 committed by GitHub
parent 25d9cdc88f
commit 2573ed8c6b
Failed to generate hash of commit
3 changed files with 0 additions and 156 deletions

View file

@ -32,8 +32,6 @@ typedef uint32_t matrix_row_t;
#define MATRIX_ROW_SHIFTER ((matrix_row_t)1)
#define MATRIX_IS_ON(row, col) (matrix_get_row(row) && (1 << col))
#ifdef __cplusplus
extern "C" {
#endif