Hello!
In the last update you added twitCurl::userLookup method and in this method you
are using std::min like this: std::min(100U, userInfo.size()).
This code doesn't compile on OSX (LLVM 4.0) with error saying of incompatible
types (unsigned int vs. unsigned long). Quick fix solution for this issue that
worked for me is to use std::min something like this: std::min(100UL,
userInfo.size()).
Original issue reported on code.google.com by arassa...@17bullets.com on 29 Aug 2012 at 9:26
Original issue reported on code.google.com by
arassa...@17bullets.com
on 29 Aug 2012 at 9:26