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:
@@ -112,13 +112,11 @@ PoolStringArray MIDIDriverCoreMidi::get_connected_inputs() {
|
||||
return list;
|
||||
}
|
||||
|
||||
MIDIDriverCoreMidi::MIDIDriverCoreMidi() {
|
||||
|
||||
client = 0;
|
||||
MIDIDriverCoreMidi::MIDIDriverCoreMidi() :
|
||||
client(0) {
|
||||
}
|
||||
|
||||
MIDIDriverCoreMidi::~MIDIDriverCoreMidi() {
|
||||
|
||||
close();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user