Remove excess semicolon warnings

This commit is contained in:
Thomas J. Moore 2016-02-20 14:55:52 -06:00
parent 00f7c6ba43
commit f786e94970
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class API
std::string getErrorMessage() { return this->error_message; };
std::string getToken() { return this->config.oauth_token; };
std::string getSecret() { return this->config.oauth_secret; };
template <typename T> CURLcode curlSetOpt(CURLoption option, T value) { return curl_easy_setopt(this->curlhandle, option, value); };
template <typename T> CURLcode curlSetOpt(CURLoption option, T value) { return curl_easy_setopt(this->curlhandle, option, value); }
virtual ~API();
protected:
private:

View File

@ -74,6 +74,6 @@ namespace GlobalConstants
{ PLATFORM_MAC, "mac", "Mac" , "m|mac|osx" },
{ PLATFORM_LINUX, "linux", "Linux" , "l|lin|linux" }
};
};
}
#endif // GLOBALCONSTANTS_H_INCLUDED