In the file ofxMPEClient.cpp in line 411 you can read:
send("S" + delimiter + ofToString(id) + delimiter + clientName);
on my machine that leads to the following error:
error: no matching function for call to ‘ofxMPEClient::send(std::basic_string<char>)'
for me writing:
std::string str = std::string("S" + delimiter + ofToString(id) + delimiter + clientName);
send(str);
Since it the error stop compilation, this seems like a bug to me thought.
In the file
ofxMPEClient.cppin line 411 you can read:on my machine that leads to the following error:
error: no matching function for call to ‘ofxMPEClient::send(std::basic_string<char>)'for me writing:
Since it the error stop compilation, this seems like a bug to me thought.