diff options
author | hop311 <hop3114@gmail.com> | 2023-10-29 15:11:24 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-11-07 23:02:34 +0100 |
commit | 47fff276966d42cba6a2df9093348a5e20a37159 (patch) | |
tree | 556707348d57b81f91627bb8fda5989a305c0d21 /extension/src/openvic-extension/Checksum.hpp | |
parent | 9304fd4e109c27a7dfb487a15c9a52c4055ee485 (diff) |
Clang-format formatting (with manual cleanup)
Diffstat (limited to 'extension/src/openvic-extension/Checksum.hpp')
-rw-r--r-- | extension/src/openvic-extension/Checksum.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/openvic-extension/Checksum.hpp b/extension/src/openvic-extension/Checksum.hpp index 38839df..c5d8daf 100644 --- a/extension/src/openvic-extension/Checksum.hpp +++ b/extension/src/openvic-extension/Checksum.hpp @@ -7,7 +7,7 @@ namespace OpenVic { GDCLASS(Checksum, godot::Object) // BEGIN BOILERPLATE - inline static Checksum* _checksum = nullptr; + static inline Checksum* _checksum = nullptr; protected: static void _bind_methods() { @@ -15,7 +15,7 @@ namespace OpenVic { } public: - inline static Checksum* get_singleton() { + static inline Checksum* get_singleton() { return _checksum; } |