File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ class ofxOscMessage {
191191 // / \return a reference to this ofxOscMessage
192192 ofxOscMessage & addInt64Arg (std::int64_t argument);
193193 ofxOscMessage & add (std::int64_t argument) { return addInt64Arg (argument); }
194+ ofxOscMessage & add (size_t argument) { return addInt64Arg (argument); }
194195
195196 // / add a 32-bit float
196197 // / \return a reference to this ofxOscMessage
@@ -206,6 +207,7 @@ class ofxOscMessage {
206207 // / \return a reference to this ofxOscMessage
207208 ofxOscMessage & addStringArg (const std::string & argument);
208209 ofxOscMessage & add (const std::string & argument) { return addStringArg (argument); }
210+ ofxOscMessage & add (const char * argument) { return addStringArg (argument); }
209211
210212 // / add a symbol (string)
211213 // / \return a reference to this ofxOscMessage
You can’t perform that action at this time.
0 commit comments