aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
commita4f213bf923b79674b8dcef4c35f0f79329ffc80 (patch)
tree3914b8e2e1bfbdefa64fb767d055b0ef54d78b37
parent9f7ad25bdb8a821b24042bfd62e5a694451789f6 (diff)
Removing semicolons that would cause issues on MSVC
-rw-r--r--extension/src/Simulation.hpp2
-rw-r--r--extension/src/TestSingleton.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/Simulation.hpp b/extension/src/Simulation.hpp
index 554f257..e16f34b 100644
--- a/extension/src/Simulation.hpp
+++ b/extension/src/Simulation.hpp
@@ -7,7 +7,7 @@
namespace OpenVic2 {
class Simulation : public godot::Object {
- GDCLASS(Simulation, godot::Object);
+ GDCLASS(Simulation, godot::Object)
std::vector<size_t> exampleProvinces;
//BEGIN BOILERPLATE
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;