format code according to conventions [skip ci]
authorQMK Bot <hello@qmk.fm>
Sat, 21 Mar 2020 12:58:19 +0000 (12:58 +0000)
committerQMK Bot <hello@qmk.fm>
Sat, 21 Mar 2020 12:58:19 +0000 (12:58 +0000)
tmk_core/common/report.h

index af91718..319ba4a 100644 (file)
@@ -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