File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
boost/network/protocol/http/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ class basic_client_facade {
122
122
} else {
123
123
if (boost::empty (content_type_headers)) {
124
124
typedef typename char_<Tag>::type char_type;
125
- static char_type content_type[] = " x-application/octet-stream" ;
125
+ static char_type* content_type = " x-application/octet-stream" ;
126
126
request << header (" Content-Type" , content_type);
127
127
}
128
128
}
@@ -227,7 +227,7 @@ class basic_client_facade {
227
227
} else {
228
228
if (boost::empty (content_type_headers)) {
229
229
typedef typename char_<Tag>::type char_type;
230
- static char_type content_type[] = " x-application/octet-stream" ;
230
+ static char_type* content_type = " x-application/octet-stream" ;
231
231
request << header (" Content-Type" , content_type);
232
232
}
233
233
}
You can’t perform that action at this time.
0 commit comments