Skip to content

Commit

Permalink
ofxOscMessage::add(const char * argument)
Browse files Browse the repository at this point in the history
  • Loading branch information
artificiel committed May 14, 2024
1 parent ba8d08b commit 605c55e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions addons/ofxOsc/src/ofxOscMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ class ofxOscMessage {
/// \return a reference to this ofxOscMessage
ofxOscMessage & addStringArg(const std::string & argument);
ofxOscMessage & add(const std::string & argument) { return addStringArg(argument); }
ofxOscMessage & add(const char * argument) { return addStringArg(argument); }

/// add a symbol (string)
/// \return a reference to this ofxOscMessage
Expand Down

0 comments on commit 605c55e

Please sign in to comment.