aboutsummaryrefslogtreecommitdiff
path: root/keyboards/wilba_tech
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-09-01 19:03:14 +1000
committerGitHub <noreply@github.com>2021-09-01 19:03:14 +1000
commit41c50bb653b840c595fb31541729d892f68666e6 (patch)
treeba05c7c9654f7be1104b20f3195dd2cf288e004e /keyboards/wilba_tech
parent971d36bb9ea37962c57733e5f7c0c24e5a6cebeb (diff)
downloadqmk_firmware-41c50bb653b840c595fb31541729d892f68666e6.tar.gz
qmk_firmware-41c50bb653b840c595fb31541729d892f68666e6.zip
Change keyboard level include guards to `pragma once` (#14248)
* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
Diffstat (limited to 'keyboards/wilba_tech')
-rw-r--r--keyboards/wilba_tech/rama_works_m10_b/rama_works_m10_b.h19
-rw-r--r--keyboards/wilba_tech/rama_works_m6_a/rama_works_m6_a.h18
2 files changed, 19 insertions, 18 deletions
diff --git a/keyboards/wilba_tech/rama_works_m10_b/rama_works_m10_b.h b/keyboards/wilba_tech/rama_works_m10_b/rama_works_m10_b.h
index d55ad598c..c23a4d003 100644
--- a/keyboards/wilba_tech/rama_works_m10_b/rama_works_m10_b.h
+++ b/keyboards/wilba_tech/rama_works_m10_b/rama_works_m10_b.h
@@ -13,17 +13,18 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include "quantum.h" 16#pragma once
17 17
18#ifndef RAMA_M10_B_H 18#include "quantum.h"
19#define RAMA_M10_B_H
20 19
21// This a shortcut to help you visually see your layout. 20// This a shortcut to help you visually see your layout.
22// The first section contains all of the arguments 21// The first section contains all of the arguments
23// The second converts the arguments into a two-dimensional array 22// The second converts the arguments into a two-dimensional array
24#define LAYOUT( \ 23#define LAYOUT( \
25 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09 ) \ 24 k00, k01, k02, \
26 { \ 25 k03, k04, k05, \
27 {K00, K01, K02, K03, K04, K05, K06, K07, K08, K09}, \ 26 k06, k07, k08, \
28 } 27 k09 \
29#endif // RAMA_M10_B 28) { \
29 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09 } \
30}
diff --git a/keyboards/wilba_tech/rama_works_m6_a/rama_works_m6_a.h b/keyboards/wilba_tech/rama_works_m6_a/rama_works_m6_a.h
index d3c7bad33..0a3858145 100644
--- a/keyboards/wilba_tech/rama_works_m6_a/rama_works_m6_a.h
+++ b/keyboards/wilba_tech/rama_works_m6_a/rama_works_m6_a.h
@@ -13,17 +13,17 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include "quantum.h"
17 16
18#ifndef RAMA_M6_A_H 17#pragma once
19#define RAMA_M6_A_H 18
19#include "quantum.h"
20 20
21// This a shortcut to help you visually see your layout. 21// This a shortcut to help you visually see your layout.
22// The first section contains all of the arguments 22// The first section contains all of the arguments
23// The second converts the arguments into a two-dimensional array 23// The second converts the arguments into a two-dimensional array
24#define LAYOUT( \ 24#define LAYOUT( \
25 K00, K01, K02, K03, K04, K05) \ 25 k00, k01, k02, \
26 { \ 26 k03, k04, k05 \
27 {K00, K01, K02, K03, K04, K05}, \ 27) { \
28 } 28 { k00, k01, k02, k03, k04, k05 } \
29#endif // RAMA_M6_A 29}