summaryrefslogtreecommitdiffstats
path: root/include/core/Godot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/Godot.hpp')
-rw-r--r--include/core/Godot.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/Godot.hpp b/include/core/Godot.hpp
index 4ed48ed..6fd3303 100644
--- a/include/core/Godot.hpp
+++ b/include/core/Godot.hpp
@@ -45,8 +45,8 @@ public:
Name *instance = godot::as<Name>(script->new_()); \
return instance; \
} \
- inline static size_t ___get_id() { return typeid(Name).hash_code(); }; \
- inline static size_t ___get_base_id() { return typeid(Base).hash_code(); }; \
+ inline static size_t ___get_id() { return typeid(Name).hash_code(); } \
+ inline static size_t ___get_base_id() { return typeid(Base).hash_code(); } \
inline static const char *___get_base_type_name() { return Base::___get_class_name(); } \
inline static Object *___get_from_variant(godot::Variant a) { return (godot::Object *)godot::as<Name>(godot::Object::___get_from_variant(a)); } \
\