diff options
author | Drashna Jaelre <drashna@live.com> | 2018-10-30 18:03:46 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-11-06 00:40:30 -0500 |
commit | 73e634482ea8f57d1f1a5f1e16bc3ffd74f84b8e (patch) | |
tree | 36df9db32b62e9e798bd4c4f08a98be085de7c28 /tmk_core/common/command.h | |
parent | 40313cfa3b4a4f1643382f0446e0a889ef3e76dc (diff) | |
download | qmk_firmware-73e634482ea8f57d1f1a5f1e16bc3ffd74f84b8e.tar.gz qmk_firmware-73e634482ea8f57d1f1a5f1e16bc3ffd74f84b8e.zip |
command.h include was not set correctly
Diffstat (limited to 'tmk_core/common/command.h')
-rw-r--r-- | tmk_core/common/command.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/command.h b/tmk_core/common/command.h index d9d89ba0f1..c38f2b9e80 100644 --- a/tmk_core/common/command.h +++ b/tmk_core/common/command.h @@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMMAND_H -#define COMMAND +#pragma once /* FIXME: Add doxygen comments for the behavioral defines in here. */ @@ -155,5 +154,3 @@ bool command_proc(uint8_t code); #define XMAGIC_KC(key) KC_##key #define MAGIC_KC(key) XMAGIC_KC(key) - -#endif |