@@ -568,7 +568,7 @@ class http_response
568
568
// / <remarks>
569
569
// / This will overwrite any previously set body data and "Content-Type" header.
570
570
// / </remarks>
571
- void set_body (const utf16string &body_text, utf16string content_type = :: utility::conversions::to_utf16string(" text/plain" ))
571
+ void set_body (const utf16string &body_text, utf16string content_type = utility::conversions::to_utf16string(" text/plain" ))
572
572
{
573
573
if (content_type.find (::utility::conversions::to_utf16string (" charset=" )) != content_type.npos )
574
574
{
@@ -978,7 +978,7 @@ class http_request
978
978
// / <remarks>
979
979
// / This will overwrite any previously set body data and "Content-Type" header.
980
980
// / </remarks>
981
- void set_body (const utf16string &body_text, utf16string content_type = :: utility::conversions::to_utf16string(" text/plain" ))
981
+ void set_body (const utf16string &body_text, utf16string content_type = utility::conversions::to_utf16string(" text/plain" ))
982
982
{
983
983
if (content_type.find (::utility::conversions::to_utf16string (" charset=" )) != content_type.npos )
984
984
{
@@ -1207,7 +1207,7 @@ class http_request
1207
1207
// Callers of this function do NOT need to block waiting for the response to be
1208
1208
// / sent to before the body data is destroyed or goes out of scope.
1209
1209
// / </remarks>
1210
- pplx::task<void > reply (http::status_code status, const utf16string &body_data, const utf16string &content_type = :: utility::conversions::to_utf16string(" text/plain" )) const
1210
+ pplx::task<void > reply (http::status_code status, const utf16string &body_data, const utf16string &content_type = utility::conversions::to_utf16string(" text/plain" )) const
1211
1211
{
1212
1212
http_response response (status);
1213
1213
response.set_body (body_data, content_type);
0 commit comments