C++11 Building - Use new style struct field inititializing
- clang with std=c++11 enabled was failing here
This commit is contained in:
parent
65eb0b845f
commit
bf153e58a5
@ -56,15 +56,15 @@ probe_generic_midi_protocol (ControlProtocolDescriptor* /*descriptor*/)
|
||||
}
|
||||
|
||||
static ControlProtocolDescriptor generic_midi_descriptor = {
|
||||
name : "Generic MIDI",
|
||||
id : "uri://ardour.org/surfaces/generic_midi:0",
|
||||
ptr : 0,
|
||||
module : 0,
|
||||
mandatory : 0,
|
||||
supports_feedback : true,
|
||||
probe : probe_generic_midi_protocol,
|
||||
initialize : new_generic_midi_protocol,
|
||||
destroy : delete_generic_midi_protocol
|
||||
.name = "Generic MIDI",
|
||||
.id = "uri://ardour.org/surfaces/generic_midi:0",
|
||||
.ptr = 0,
|
||||
.module = 0,
|
||||
.mandatory = 0,
|
||||
.supports_feedback = true,
|
||||
.probe = probe_generic_midi_protocol,
|
||||
.initialize = new_generic_midi_protocol,
|
||||
.destroy = delete_generic_midi_protocol
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user