From 8d232f3968ab7dd6cd54c4557dfbbba94d140528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 15 Jun 2017 19:29:15 +0200 Subject: [PATCH] Remove separators. --- right/src/config/parse_keymap.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/right/src/config/parse_keymap.c b/right/src/config/parse_keymap.c index 00bfb1c..c6797a4 100644 --- a/right/src/config/parse_keymap.c +++ b/right/src/config/parse_keymap.c @@ -36,8 +36,6 @@ static const char *readString(serialized_buffer_t *buffer, uint16_t *len) { } */ -// ---------------- - static void parseNoneAction(key_action_t *action, serialized_buffer_t *buffer) { action->type = KeyActionType_None; } @@ -178,8 +176,6 @@ static void clearModule(uint8_t targetLayer, uint8_t moduleID) { memset(&CurrentKeymap[targetLayer][moduleID], 0, MAX_KEY_COUNT_PER_MODULE * sizeof(key_action_t)); } -// ---------- - void ParseLayer(const uint8_t *data, uint8_t targetLayer) { serialized_buffer_t buffer;