summaryrefslogtreecommitdiffstats
path: root/include/core
diff options
context:
space:
mode:
authorRamesh Ravone <ramesh.maran443@gmail.com>2017-07-22 19:11:38 +0530
committerRamesh Ravone <ramesh.maran443@gmail.com>2017-07-22 19:16:10 +0530
commit36561b58531d25e43659e34fe5370cb170c806f3 (patch)
tree488b3886e4f18f3fed885c0694906339e1b1e17b /include/core
parenta3bcda958ea503ede07be35b46a6d983173d4b1c (diff)
downloadredot-cpp-36561b58531d25e43659e34fe5370cb170c806f3.tar.gz
String operator_plus fix
Diffstat (limited to 'include/core')
-rw-r--r--include/core/Godot.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/core/Godot.hpp b/include/core/Godot.hpp
index ba86a5c..320a4f1 100644
--- a/include/core/Godot.hpp
+++ b/include/core/Godot.hpp
@@ -50,7 +50,6 @@ public:
#define GODOT_NATIVE_TERMINATE(arg) extern "C" void GD_EXPORT godot_native_terminate(arg)
-
#define GODOT_CLASS(Name) \
public: inline static char *___get_type_name() { return (char *) #Name; } \
private:
@@ -58,7 +57,7 @@ public:
#define GODOT_SUBCLASS(Name, Base) \
public: inline static char *___get_type_name() { return (char *) #Name; } \
inline static char *___get_base_type_name() { return (char *) #Base; } \
- inline Name(godot_object *o) : Base(o) {} \
+ //inline Name(godot_object *o) : Base(o) {} \
private: