From 63c6486a7f2ce1c008be414a45915a86be4db4bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Wed, 10 Oct 2018 23:27:25 +0200 Subject: [PATCH] Add missing header guards (#8081) --- src/openrct2-ui/WindowManager.h | 2 ++ src/openrct2-ui/drawing/BitmapReader.h | 2 ++ src/openrct2/drawing/ImageImporter.h | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/openrct2-ui/WindowManager.h b/src/openrct2-ui/WindowManager.h index aabb324c50..0f13c8579f 100644 --- a/src/openrct2-ui/WindowManager.h +++ b/src/openrct2-ui/WindowManager.h @@ -7,6 +7,8 @@ * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ +#pragma once + #include namespace OpenRCT2::Ui diff --git a/src/openrct2-ui/drawing/BitmapReader.h b/src/openrct2-ui/drawing/BitmapReader.h index cb239afff3..4328b01c15 100644 --- a/src/openrct2-ui/drawing/BitmapReader.h +++ b/src/openrct2-ui/drawing/BitmapReader.h @@ -7,4 +7,6 @@ * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ +#pragma once + void RegisterBitmapReader(); diff --git a/src/openrct2/drawing/ImageImporter.h b/src/openrct2/drawing/ImageImporter.h index d1faccceda..b89afe5cee 100644 --- a/src/openrct2/drawing/ImageImporter.h +++ b/src/openrct2/drawing/ImageImporter.h @@ -7,6 +7,8 @@ * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ +#pragma once + #include "../core/Imaging.h" #include "Drawing.h"