From: Konstantin Đorđević Date: Tue, 9 Jul 2019 18:16:24 +0000 (+0200) Subject: Fix parentheses in macros, and in general clean up quantum.h (#5021) X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c69060465ea1ce4f77fb69e2dea7cb035f89ba4e;hp=c69060465ea1ce4f77fb69e2dea7cb035f89ba4e;p=qmk_firmware.git Fix parentheses in macros, and in general clean up quantum.h (#5021) * Fix up GPIO macros * Fix up send string macros `string` arguments must not be parenthesized * Fix up miscellaneous macros * Make indentation uniform (4 spaces) * Make #ifdef vs #if defined usage consistent * Reorder standard includes * Revert indentation changes as per review comments * Revert #if defined(__AVR__) → #ifdef __AVR__ change * Change 2 space indent to 4 spaces on a couple of lines * Replace include guard with #pragma once ---