File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ class ofxOscMessage {
216216 // / add a char
217217 // / \return a reference to this ofxOscMessage
218218 ofxOscMessage & addCharArg (char argument);
219- ofxOscMessage & add (char & argument) { return addCharArg (argument); }
219+ ofxOscMessage & add (char argument) { return addCharArg (argument); }
220220
221221 // / add a 4-byte MIDI message
222222 // / \return a reference to this ofxOscMessage
@@ -226,7 +226,7 @@ class ofxOscMessage {
226226 // / true sends a OFXOSC_TYPE_TRUE & false sends a OFXOSC_TYPE_FALSE
227227 // / \return a reference to this ofxOscMessage
228228 ofxOscMessage & addBoolArg (bool argument);
229- ofxOscMessage & add (bool & argument) { return addBoolArg (argument); }
229+ ofxOscMessage & add (bool argument) { return addBoolArg (argument); }
230230
231231 // / add a none/nil (has no value)
232232 // / \return a reference to this ofxOscMessage
You can’t perform that action at this time.
0 commit comments