Skip to content

Commit 324512e

Browse files
committed
Style: Replace header guards with #pragma once
1 parent 96fdaa6 commit 324512e

File tree

1,746 files changed

+1767
-6920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,746 files changed

+1767
-6920
lines changed

core/config/engine.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef ENGINE_H
32-
#define ENGINE_H
31+
#pragma once
3332

3433
#include "core/os/main_loop.h"
3534
#include "core/string/ustring.h"
@@ -214,5 +213,3 @@ class Engine {
214213
Engine();
215214
virtual ~Engine();
216215
};
217-
218-
#endif // ENGINE_H

core/config/project_settings.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef PROJECT_SETTINGS_H
32-
#define PROJECT_SETTINGS_H
31+
#pragma once
3332

3433
#include "core/object/class_db.h"
3534

@@ -243,5 +242,3 @@ Variant _GLOBAL_DEF(const PropertyInfo &p_info, const Variant &p_default, bool p
243242
#define GLOBAL_DEF_RST_NOVAL_BASIC(m_var, m_value) _GLOBAL_DEF(m_var, m_value, true, true, true)
244243

245244
#define GLOBAL_DEF_INTERNAL(m_var, m_value) _GLOBAL_DEF(m_var, m_value, false, false, false, true)
246-
247-
#endif // PROJECT_SETTINGS_H

core/core_bind.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CORE_BIND_H
32-
#define CORE_BIND_H
31+
#pragma once
3332

3433
#include "core/debugger/engine_profiler.h"
3534
#include "core/io/resource_loader.h"
@@ -670,5 +669,3 @@ VARIANT_ENUM_CAST(core_bind::Geometry2D::PolyEndType);
670669
VARIANT_ENUM_CAST(core_bind::Thread::Priority);
671670

672671
VARIANT_ENUM_CAST(core_bind::special::ClassDB::APIType);
673-
674-
#endif // CORE_BIND_H

core/core_constants.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CORE_CONSTANTS_H
32-
#define CORE_CONSTANTS_H
31+
#pragma once
3332

3433
#include "core/string/string_name.h"
3534
#include "core/templates/hash_map.h"
@@ -47,5 +46,3 @@ class CoreConstants {
4746
static bool is_global_enum(const StringName &p_enum);
4847
static void get_enum_values(const StringName &p_enum, HashMap<StringName, int64_t> *p_values);
4948
};
50-
51-
#endif // CORE_CONSTANTS_H

core/core_globals.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CORE_GLOBALS_H
32-
#define CORE_GLOBALS_H
31+
#pragma once
3332

3433
// Home for state needed from global functions
3534
// that cannot be stored in Engine or OS due to e.g. circular includes
@@ -40,5 +39,3 @@ class CoreGlobals {
4039
static bool print_line_enabled;
4140
static bool print_error_enabled;
4241
};
43-
44-
#endif // CORE_GLOBALS_H

core/core_string_names.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CORE_STRING_NAMES_H
32-
#define CORE_STRING_NAMES_H
31+
#pragma once
3332

3433
#include "core/string/string_name.h"
3534

@@ -87,5 +86,3 @@ class CoreStringNames {
8786
};
8887

8988
#define CoreStringName(m_name) CoreStringNames::get_singleton()->m_name
90-
91-
#endif // CORE_STRING_NAMES_H

core/crypto/aes_context.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef AES_CONTEXT_H
32-
#define AES_CONTEXT_H
31+
#pragma once
3332

3433
#include "core/crypto/crypto_core.h"
3534
#include "core/object/ref_counted.h"
@@ -64,5 +63,3 @@ class AESContext : public RefCounted {
6463
};
6564

6665
VARIANT_ENUM_CAST(AESContext::Mode);
67-
68-
#endif // AES_CONTEXT_H

core/crypto/crypto.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CRYPTO_H
32-
#define CRYPTO_H
31+
#pragma once
3332

3433
#include "core/crypto/hashing_context.h"
3534
#include "core/io/resource.h"
@@ -167,5 +166,3 @@ class ResourceFormatSaverCrypto : public ResourceFormatSaver {
167166
virtual void get_recognized_extensions(const Ref<Resource> &p_resource, List<String> *p_extensions) const override;
168167
virtual bool recognize(const Ref<Resource> &p_resource) const override;
169168
};
170-
171-
#endif // CRYPTO_H

core/crypto/crypto_core.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef CRYPTO_CORE_H
32-
#define CRYPTO_CORE_H
31+
#pragma once
3332

3433
#include "core/object/ref_counted.h"
3534

@@ -115,5 +114,3 @@ class CryptoCore {
115114
static Error sha1(const uint8_t *p_src, int p_src_len, unsigned char r_hash[20]);
116115
static Error sha256(const uint8_t *p_src, int p_src_len, unsigned char r_hash[32]);
117116
};
118-
119-
#endif // CRYPTO_CORE_H

core/crypto/hashing_context.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef HASHING_CONTEXT_H
32-
#define HASHING_CONTEXT_H
31+
#pragma once
3332

3433
#include "core/object/ref_counted.h"
3534

@@ -62,5 +61,3 @@ class HashingContext : public RefCounted {
6261
};
6362

6463
VARIANT_ENUM_CAST(HashingContext::HashType);
65-
66-
#endif // HASHING_CONTEXT_H

core/debugger/debugger_marshalls.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef DEBUGGER_MARSHALLS_H
32-
#define DEBUGGER_MARSHALLS_H
31+
#pragma once
3332

3433
#include "core/input/shortcut.h"
3534
#include "core/object/script_language.h"
@@ -73,5 +72,3 @@ struct DebuggerMarshalls {
7372
static Array serialize_key_shortcut(const Ref<Shortcut> &p_shortcut);
7473
static Ref<Shortcut> deserialize_key_shortcut(const Array &p_keys);
7574
};
76-
77-
#endif // DEBUGGER_MARSHALLS_H

core/debugger/engine_debugger.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef ENGINE_DEBUGGER_H
32-
#define ENGINE_DEBUGGER_H
31+
#pragma once
3332

3433
#include "core/string/string_name.h"
3534
#include "core/string/ustring.h"
@@ -140,5 +139,3 @@ class EngineDebugger {
140139

141140
virtual ~EngineDebugger();
142141
};
143-
144-
#endif // ENGINE_DEBUGGER_H

core/debugger/engine_profiler.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef ENGINE_PROFILER_H
32-
#define ENGINE_PROFILER_H
31+
#pragma once
3332

3433
#include "core/object/gdvirtual.gen.inc"
3534
#include "core/object/ref_counted.h"
@@ -59,5 +58,3 @@ class EngineProfiler : public RefCounted {
5958
EngineProfiler() {}
6059
virtual ~EngineProfiler();
6160
};
62-
63-
#endif // ENGINE_PROFILER_H

core/debugger/local_debugger.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef LOCAL_DEBUGGER_H
32-
#define LOCAL_DEBUGGER_H
31+
#pragma once
3332

3433
#include "core/debugger/engine_debugger.h"
3534
#include "core/object/script_language.h"
@@ -55,5 +54,3 @@ class LocalDebugger : public EngineDebugger {
5554
LocalDebugger();
5655
~LocalDebugger();
5756
};
58-
59-
#endif // LOCAL_DEBUGGER_H

core/debugger/remote_debugger.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef REMOTE_DEBUGGER_H
32-
#define REMOTE_DEBUGGER_H
31+
#pragma once
3332

3433
#include "core/debugger/debugger_marshalls.h"
3534
#include "core/debugger/engine_debugger.h"
@@ -122,5 +121,3 @@ class RemoteDebugger : public EngineDebugger {
122121
explicit RemoteDebugger(Ref<RemoteDebuggerPeer> p_peer);
123122
~RemoteDebugger();
124123
};
125-
126-
#endif // REMOTE_DEBUGGER_H

core/debugger/remote_debugger_peer.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef REMOTE_DEBUGGER_PEER_H
32-
#define REMOTE_DEBUGGER_PEER_H
31+
#pragma once
3332

3433
#include "core/io/stream_peer_tcp.h"
3534
#include "core/object/ref_counted.h"
@@ -92,5 +91,3 @@ class RemoteDebuggerPeerTCP : public RemoteDebuggerPeer {
9291
RemoteDebuggerPeerTCP(Ref<StreamPeerTCP> p_stream = Ref<StreamPeerTCP>());
9392
~RemoteDebuggerPeerTCP();
9493
};
95-
96-
#endif // REMOTE_DEBUGGER_PEER_H

core/debugger/script_debugger.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef SCRIPT_DEBUGGER_H
32-
#define SCRIPT_DEBUGGER_H
31+
#pragma once
3332

3433
#include "core/object/script_language.h"
3534
#include "core/string/string_name.h"
@@ -82,5 +81,3 @@ class ScriptDebugger {
8281
Vector<StackInfo> get_error_stack_info() const;
8382
ScriptDebugger() {}
8483
};
85-
86-
#endif // SCRIPT_DEBUGGER_H

core/doc_data.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef DOC_DATA_H
32-
#define DOC_DATA_H
31+
#pragma once
3332

3433
#include "core/io/xml_parser.h"
3534
#include "core/variant/variant.h"
@@ -980,5 +979,3 @@ class DocData {
980979
static void argument_doc_from_arginfo(DocData::ArgumentDoc &p_argument, const PropertyInfo &p_arginfo);
981980
static void method_doc_from_methodinfo(DocData::MethodDoc &p_method, const MethodInfo &p_methodinfo, const String &p_desc);
982981
};
983-
984-
#endif // DOC_DATA_H

core/error/error_list.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef ERROR_LIST_H
32-
#define ERROR_LIST_H
31+
#pragma once
3332

3433
/** Error List. Please never compare an error against FAILED
3534
* Either do result != OK , or !result. This way, Error fail
@@ -98,5 +97,3 @@ enum Error {
9897
};
9998

10099
extern const char *error_names[];
101-
102-
#endif // ERROR_LIST_H

core/error/error_macros.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef ERROR_MACROS_H
32-
#define ERROR_MACROS_H
31+
#pragma once
3332

3433
#include "core/object/object_id.h"
3534
#include "core/typedefs.h"
@@ -845,5 +844,3 @@ void _physics_interpolation_warning(const char *p_function, const char *p_file,
845844

846845
#define PHYSICS_INTERPOLATION_WARNING(m_string) \
847846
_physics_interpolation_warning(FUNCTION_STR, __FILE__, __LINE__, ObjectID(UINT64_MAX), m_string)
848-
849-
#endif // ERROR_MACROS_H

core/extension/extension_api_dump.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef EXTENSION_API_DUMP_H
32-
#define EXTENSION_API_DUMP_H
31+
#pragma once
3332

3433
#include "core/extension/gdextension.h"
3534

@@ -42,5 +41,3 @@ class GDExtensionAPIDump {
4241
static Error validate_extension_json_file(const String &p_path);
4342
};
4443
#endif
45-
46-
#endif // EXTENSION_API_DUMP_H

core/extension/gdextension.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef GDEXTENSION_H
32-
#define GDEXTENSION_H
31+
#pragma once
3332

3433
#include "core/extension/gdextension_interface.h"
3534
#include "core/extension/gdextension_loader.h"
@@ -226,5 +225,3 @@ class GDExtensionEditorHelp {
226225
};
227226

228227
#endif // TOOLS_ENABLED
229-
230-
#endif // GDEXTENSION_H

core/extension/gdextension_interface.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef GDEXTENSION_INTERFACE_H
32-
#define GDEXTENSION_INTERFACE_H
31+
#pragma once
3332

3433
/* This is a C class header, you can copy it and use it directly in your own binders.
3534
* Together with the JSON file, you should be able to generate any binder.
@@ -3104,5 +3103,3 @@ typedef void (*GDExtensionsInterfaceEditorHelpLoadXmlFromUtf8CharsAndLen)(const
31043103
#ifdef __cplusplus
31053104
}
31063105
#endif
3107-
3108-
#endif // GDEXTENSION_INTERFACE_H

core/extension/gdextension_library_loader.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef GDEXTENSION_LIBRARY_LOADER_H
32-
#define GDEXTENSION_LIBRARY_LOADER_H
31+
#pragma once
3332

3433
#include <functional>
3534

@@ -81,5 +80,3 @@ class GDExtensionLibraryLoader : public GDExtensionLoader {
8180

8281
Error parse_gdextension_file(const String &p_path);
8382
};
84-
85-
#endif // GDEXTENSION_LIBRARY_LOADER_H

core/extension/gdextension_loader.h

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
2929
/**************************************************************************/
3030

31-
#ifndef GDEXTENSION_LOADER_H
32-
#define GDEXTENSION_LOADER_H
31+
#pragma once
3332

3433
#include "core/object/ref_counted.h"
3534

@@ -44,5 +43,3 @@ class GDExtensionLoader : public RefCounted {
4443
virtual bool has_library_changed() const = 0;
4544
virtual bool library_exists() const = 0;
4645
};
47-
48-
#endif // GDEXTENSION_LOADER_H

0 commit comments

Comments
 (0)