Changeset - 3e074dc5575e
[Not reviewed]
0 1 0
Jan Kaluza - 9 years ago 2016-02-02 12:47:37
jkaluza@redhat.com
Twitter: Fix compilation with newer gcc
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
backends/twitter/Requests/FetchFriends.h
Show inline comments
 
@@ -21,11 +21,11 @@ class FetchFriends : public Thread
 
	std::vector<User> friends;
 
	std::vector<std::string> friendAvatars;
 
	bool success;
 
	boost::function< void (std::string, std::vector<User> &, std::vector<std::string> &, Error) > callBack;
 
	boost::function< void (std::string &, std::vector<User> &, std::vector<std::string> &, Error &) > callBack;
 

	
 
	public:
 
	FetchFriends(twitCurl *obj, const std::string &_user, 
 
			     boost::function< void (std::string, std::vector<User> &, std::vector<std::string> &, Error) >  cb) {
 
			     boost::function< void (std::string &, std::vector<User> &, std::vector<std::string> &, Error &) >  cb) {
 
		twitObj = obj->clone();
 
		user = _user;
 
		callBack = cb;
0 comments (0 inline, 0 general)