diff options
author | Robert Clarke <clarke.john.robert@gmail.com> | 2023-02-13 04:05:08 +0100 |
---|---|---|
committer | Robert Clarke <clarke.john.robert@gmail.com> | 2023-02-13 04:05:08 +0100 |
commit | a4f213bf923b79674b8dcef4c35f0f79329ffc80 (patch) | |
tree | 3914b8e2e1bfbdefa64fb767d055b0ef54d78b37 /extension/src/TestSingleton.hpp | |
parent | 9f7ad25bdb8a821b24042bfd62e5a694451789f6 (diff) |
Removing semicolons that would cause issues on MSVC
Diffstat (limited to 'extension/src/TestSingleton.hpp')
-rw-r--r-- | extension/src/TestSingleton.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/TestSingleton.hpp b/extension/src/TestSingleton.hpp index 0a591ac..de27589 100644 --- a/extension/src/TestSingleton.hpp +++ b/extension/src/TestSingleton.hpp @@ -6,7 +6,7 @@ namespace OpenVic2 { class TestSingleton : public godot::Object { - GDCLASS(TestSingleton, godot::Object); + GDCLASS(TestSingleton, godot::Object) static TestSingleton *singleton; |