diff options
Diffstat (limited to 'quantum/template/base/template.h')
-rw-r--r-- | quantum/template/base/template.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/quantum/template/base/template.h b/quantum/template/base/template.h index 2e531b1fd..595da73c6 100644 --- a/quantum/template/base/template.h +++ b/quantum/template/base/template.h @@ -25,11 +25,5 @@ * The second converts the arguments into a two-dimensional array which * represents the switch matrix. */ -#define LAYOUT( \ - k00, k01, k02, \ - k10, k11 \ -) \ -{ \ - { k00, k01, k02 }, \ - { k10, KC_NO, k11 }, \ -} +#define LAYOUT(k00, k01, k02, k10, k11) \ + { {k00, k01, k02}, {k10, KC_NO, k11}, } |