The OF API has transitioned to explicitly using the std namespace when declaring types and this PR updates the ofxSyphon API to use std::string instead of string. This should have no effect on existing projects.
Also, I'm building ofxSyphon as a Lua module for an OF + Lua interpreter and the bindings generation works with std::string, so this help me out. :)
The OF API has transitioned to explicitly using the
std
namespace when declaring types and this PR updates the ofxSyphon API to usestd::string
instead ofstring
. This should have no effect on existing projects.Also, I'm building ofxSyphon as a Lua module for an OF + Lua interpreter and the bindings generation works with std::string, so this help me out. :)