Totally picayune, but thought you might want to know.
Example in the code is here:
https://code.google.com/p/oscpack/source/browse/trunk/examples/SimpleSend.cpp#16
If you have parameters to e.g. main that you never use, you can avoid warnings
under all C++ compilers that I'm aware of by simply not naming those
parameters, like this:
int main(int, char*[]) {
// ...
Thanks for what so far appears to be an elegant and high-quality library.
Original issue reported on code.google.com by tom.ritc...@gmail.com on 10 Jun 2013 at 5:51
Original issue reported on code.google.com by
tom.ritc...@gmail.com
on 10 Jun 2013 at 5:51