What version of the product are you using? On what operating system?
r88
Please provide any additional information below.
please add const to your function parameter
e.g.:
bool statusUpdate( std::string& newStatus /* in */ );
// you explicit write its an "in" parameter but dont write:
bool statusUpdate(const std::string& newStatus /* in */ );
//the problem with this is you cant write things like:
twit.statusUpdate("new msg");
Original issue reported on code.google.com by stu...@gmail.com on 14 Jun 2012 at 7:34
Original issue reported on code.google.com by
stu...@gmail.com
on 14 Jun 2012 at 7:34