Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/godot_cpp/classes/wrapped.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ struct EngineClassRegistration {
// every line of the macro different
#define GDCLASS(m_class, m_inherits) \
private: \
void operator=(const m_class & /*p_rval*/) {} \
void operator=(const m_class &p_rval) = delete; \
friend class ::godot::ClassDB; \
friend class ::godot::Wrapped; \
\
Expand Down Expand Up @@ -428,7 +428,7 @@ protected: \
#define GDEXTENSION_CLASS_ALIAS(m_class, m_alias_for, m_inherits) \
private: \
inline static ::godot::internal::EngineClassRegistration<m_class> _gde_engine_class_registration_helper; \
void operator=(const m_class &p_rval) {} \
void operator=(const m_class &p_rval) = delete; \
friend class ::godot::ClassDB; \
friend class ::godot::Wrapped; \
\
Expand Down
Loading