Merge pull request #14971 from mogemimi/use-string-instead-of-chars

Replace char* with std::string in HttpRequest
This commit is contained in:
zilongshanren 2016-01-26 09:59:23 +08:00
commit 83a6fd36ce
1 changed files with 4 additions and 4 deletions

View File

@ -142,9 +142,9 @@ public:
* Set the url address of HttpRequest object.
* The url value could be like these: "http://httpbin.org/ip" or "https://httpbin.org/get"
*
* @param url the string pointer.
* @param url the string object.
*/
inline void setUrl(const char* url)
inline void setUrl(const std::string& url)
{
_url = url;
};
@ -194,9 +194,9 @@ public:
* Set a string tag to identify your request.
* This tag can be found in HttpResponse->getHttpRequest->getTag().
*
* @param tag the string pointer
* @param tag the string object.
*/
inline void setTag(const char* tag)
inline void setTag(const std::string& tag)
{
_tag = tag;
};