1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 03:35:09 +01:00

Add missing include guards

These were being used in multiple files all throughout the codebase!
This commit is contained in:
matheusvb3
2026-01-15 11:11:12 -03:00
parent f6cbfb91f8
commit 42d69af5b5
5 changed files with 10 additions and 2 deletions

View File

@@ -7,6 +7,8 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#pragma once
#include <algorithm>
#include <atomic>
#include <condition_variable>

View File

@@ -7,6 +7,8 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#pragma once
namespace OpenRCT2
{
enum

View File

@@ -7,6 +7,8 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#pragma once
namespace OpenRCT2::World::MapGenerator
{
struct Settings;

View File

@@ -7,10 +7,10 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include <string>
#pragma once
#include <string>
namespace TestData
{
std::string GetBasePath();

View File

@@ -7,6 +7,8 @@
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#pragma once
#include <cassert>
#include <string>
#include <string_view>