summaryrefslogtreecommitdiffstats
path: root/core/bind/core_bind.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r--core/bind/core_bind.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h
index ae569ea189..e68c40c9e4 100644
--- a/core/bind/core_bind.h
+++ b/core/bind/core_bind.h
@@ -609,7 +609,7 @@ public:
class _Mutex : public Reference {
GDCLASS(_Mutex, Reference);
- Mutex *mutex;
+ Mutex mutex;
static void _bind_methods();
@@ -617,9 +617,6 @@ public:
void lock();
Error try_lock();
void unlock();
-
- _Mutex();
- ~_Mutex();
};
class _Semaphore : public Reference {