You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Moved member variables to initializer list
This commit is contained in:
@@ -69,7 +69,6 @@ void FuncRef::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("set_function", "name"), &FuncRef::set_function);
|
||||
}
|
||||
|
||||
FuncRef::FuncRef() {
|
||||
|
||||
id = 0;
|
||||
FuncRef::FuncRef() :
|
||||
id(0) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user