1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Re-apply clang-format to all files

Some badly formatted code has managed to pass through our CI...
This commit is contained in:
Rémi Verschelde
2017-08-27 14:16:32 +02:00
parent 21e53c4267
commit c90bfcb1c6
3 changed files with 8 additions and 8 deletions

View File

@@ -614,7 +614,6 @@ void ClassDB::bind_integer_constant(const StringName &p_class, const StringName
new_list.push_back(p_name); new_list.push_back(p_name);
type->enum_map[enum_name] = new_list; type->enum_map[enum_name] = new_list;
} }
} }
type->constant_order.push_back(p_name); type->constant_order.push_back(p_name);

View File

@@ -457,6 +457,7 @@ public:
} }
type->method_map[p_name] = bind; type->method_map[p_name] = bind;
#ifdef DEBUG_METHODS_ENABLED #ifdef DEBUG_METHODS_ENABLED
// FIXME: <reduz> set_return_type is no longer in MethodBind, so I guess it should be moved to vararg method bind
//bind->set_return_type("Variant"); //bind->set_return_type("Variant");
type->method_order.push_back(p_name); type->method_order.push_back(p_name);
#endif #endif