File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -110,13 +110,13 @@ class MidiInterface
110
110
111
111
inline MidiInterface& sendCommon (MidiType inType, unsigned = 0 );
112
112
113
- inline MidiInterface& sendClock () { sendRealTime (Clock); };
114
- inline MidiInterface& sendStart () { sendRealTime (Start); };
115
- inline MidiInterface& sendStop () { sendRealTime (Stop); };
116
- inline MidiInterface& sendTick () { sendRealTime (Tick); };
117
- inline MidiInterface& sendContinue () { sendRealTime (Continue); };
118
- inline MidiInterface& sendActiveSensing () { sendRealTime (ActiveSensing); };
119
- inline MidiInterface& sendSystemReset () { sendRealTime (SystemReset); };
113
+ inline MidiInterface& sendClock () { return sendRealTime (Clock); };
114
+ inline MidiInterface& sendStart () { return sendRealTime (Start); };
115
+ inline MidiInterface& sendStop () { return sendRealTime (Stop); };
116
+ inline MidiInterface& sendTick () { return sendRealTime (Tick); };
117
+ inline MidiInterface& sendContinue () { return sendRealTime (Continue); };
118
+ inline MidiInterface& sendActiveSensing () { return sendRealTime (ActiveSensing); };
119
+ inline MidiInterface& sendSystemReset () { return sendRealTime (SystemReset); };
120
120
121
121
inline MidiInterface& sendRealTime (MidiType inType);
122
122
You can’t perform that action at this time.
0 commit comments