aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-03-21 12:58:19 +0000
committerQMK Bot <hello@qmk.fm>2020-03-21 12:58:19 +0000
commitf9c53ca71a7cefbbd9cfcb68861bb5308cc88e4a (patch)
tree450973d879a79c2a2c3db0460cef90fa8975f814
parent0d189582c124472acc4a47ff7c4c8f1019a226c1 (diff)
downloadfirmware-f9c53ca71a7cefbbd9cfcb68861bb5308cc88e4a.tar.gz
firmware-f9c53ca71a7cefbbd9cfcb68861bb5308cc88e4a.tar.bz2
firmware-f9c53ca71a7cefbbd9cfcb68861bb5308cc88e4a.zip
format code according to conventions [skip ci]
-rw-r--r--tmk_core/common/report.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h
index af91718bd..319ba4aab 100644
--- a/tmk_core/common/report.h
+++ b/tmk_core/common/report.h
@@ -22,22 +22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "keycode.h"
/* HID report IDs */
-enum hid_report_ids {
- REPORT_ID_KEYBOARD = 1,
- REPORT_ID_MOUSE,
- REPORT_ID_SYSTEM,
- REPORT_ID_CONSUMER,
- REPORT_ID_NKRO
-};
+enum hid_report_ids { REPORT_ID_KEYBOARD = 1, REPORT_ID_MOUSE, REPORT_ID_SYSTEM, REPORT_ID_CONSUMER, REPORT_ID_NKRO };
/* Mouse buttons */
-enum mouse_buttons {
- MOUSE_BTN1 = (1 << 0),
- MOUSE_BTN2 = (1 << 1),
- MOUSE_BTN3 = (1 << 2),
- MOUSE_BTN4 = (1 << 3),
- MOUSE_BTN5 = (1 << 4)
-};
+enum mouse_buttons { MOUSE_BTN1 = (1 << 0), MOUSE_BTN2 = (1 << 1), MOUSE_BTN3 = (1 << 2), MOUSE_BTN4 = (1 << 3), MOUSE_BTN5 = (1 << 4) };
// clang-format off