From e6ccaad32de9137b6169055ddb7206a5322e39e1 Mon Sep 17 00:00:00 2001 From: UE4SS Date: Thu, 9 Jan 2025 22:51:19 +0100 Subject: [PATCH] Replaced include-guard with #pragma once for Handler.hpp --- deps/first/Input/include/Input/Handler.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/deps/first/Input/include/Input/Handler.hpp b/deps/first/Input/include/Input/Handler.hpp index 8e68ee78c..e4f0366c2 100644 --- a/deps/first/Input/include/Input/Handler.hpp +++ b/deps/first/Input/include/Input/Handler.hpp @@ -1,5 +1,4 @@ -#ifndef IO_INPUT_HANDLER_HPP -#define IO_INPUT_HANDLER_HPP +#pragma once // TODO: Abstract more... need to get rid of Windows.h from InputHandler.cpp @@ -111,5 +110,3 @@ namespace RC::Input }; #endif // HAS_INPUT } // namespace RC::Input - -#endif // IO_INPUT_HANDLER_HPP