From 272d4a5167c8e97638ab0766b909e2c54096aa27 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 10 Oct 2018 02:56:29 -0500 Subject: [PATCH] Apply #pragma once --- Marlin/src/core/types.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Marlin/src/core/types.h b/Marlin/src/core/types.h index db6587a08c..5374f1be55 100644 --- a/Marlin/src/core/types.h +++ b/Marlin/src/core/types.h @@ -19,13 +19,9 @@ * along with this program. If not, see . * */ - -#ifndef __TYPES_H__ -#define __TYPES_H__ +#pragma once #include #include typedef uint32_t millis_t; - -#endif