You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Set clang-format RemoveSemicolon rule to true
- Set clang-format `Standard` rule to `c++20`
This commit is contained in:
@@ -685,22 +685,22 @@ protected:
|
||||
_ALWAYS_INLINE_ const ObjectGDExtension *_get_extension() const { return _extension; }
|
||||
_ALWAYS_INLINE_ GDExtensionClassInstancePtr _get_extension_instance() const { return _extension_instance; }
|
||||
virtual void _initialize_classv() { initialize_class(); }
|
||||
virtual bool _setv(const StringName &p_name, const Variant &p_property) { return false; };
|
||||
virtual bool _getv(const StringName &p_name, Variant &r_property) const { return false; };
|
||||
virtual void _get_property_listv(List<PropertyInfo> *p_list, bool p_reversed) const {};
|
||||
virtual void _validate_propertyv(PropertyInfo &p_property) const {};
|
||||
virtual bool _property_can_revertv(const StringName &p_name) const { return false; };
|
||||
virtual bool _property_get_revertv(const StringName &p_name, Variant &r_property) const { return false; };
|
||||
virtual bool _setv(const StringName &p_name, const Variant &p_property) { return false; }
|
||||
virtual bool _getv(const StringName &p_name, Variant &r_property) const { return false; }
|
||||
virtual void _get_property_listv(List<PropertyInfo> *p_list, bool p_reversed) const {}
|
||||
virtual void _validate_propertyv(PropertyInfo &p_property) const {}
|
||||
virtual bool _property_can_revertv(const StringName &p_name) const { return false; }
|
||||
virtual bool _property_get_revertv(const StringName &p_name, Variant &r_property) const { return false; }
|
||||
virtual void _notificationv(int p_notification, bool p_reversed) {}
|
||||
|
||||
static void _bind_methods();
|
||||
static void _bind_compatibility_methods() {}
|
||||
bool _set(const StringName &p_name, const Variant &p_property) { return false; };
|
||||
bool _get(const StringName &p_name, Variant &r_property) const { return false; };
|
||||
void _get_property_list(List<PropertyInfo> *p_list) const {};
|
||||
void _validate_property(PropertyInfo &p_property) const {};
|
||||
bool _property_can_revert(const StringName &p_name) const { return false; };
|
||||
bool _property_get_revert(const StringName &p_name, Variant &r_property) const { return false; };
|
||||
bool _set(const StringName &p_name, const Variant &p_property) { return false; }
|
||||
bool _get(const StringName &p_name, Variant &r_property) const { return false; }
|
||||
void _get_property_list(List<PropertyInfo> *p_list) const {}
|
||||
void _validate_property(PropertyInfo &p_property) const {}
|
||||
bool _property_can_revert(const StringName &p_name) const { return false; }
|
||||
bool _property_get_revert(const StringName &p_name, Variant &r_property) const { return false; }
|
||||
void _notification(int p_notification) {}
|
||||
|
||||
_FORCE_INLINE_ static void (*_get_bind_methods())() {
|
||||
|
||||
Reference in New Issue
Block a user