diff options
author | xyzz <1065521+xyzz@users.noreply.github.com> | 2020-12-29 16:45:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 21:45:04 +0000 |
commit | 2573ed8c6bc3ce5dcccbd3fddc2e8fe5a0377eac (patch) | |
tree | 95c494e0005de4c970bef4d838c5f0dbf27acc06 /tmk_core/common | |
parent | 25d9cdc88fa990251c5528d07027448c7c801f58 (diff) |
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
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/matrix.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index e36f014600..b570227a31 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h @@ -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 |