File tree 1 file changed +2
-2
lines changed
boost/network/protocol/http/client
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class basic_client_facade {
131
131
} else {
132
132
if (boost::empty (content_type_headers)) {
133
133
typedef typename char_<Tag>::type char_type;
134
- static char_type* content_type = " x-application/octet-stream" ;
134
+ static char_type const content_type[] = " x-application/octet-stream" ;
135
135
request << header (" Content-Type" , content_type);
136
136
}
137
137
}
@@ -236,7 +236,7 @@ class basic_client_facade {
236
236
} else {
237
237
if (boost::empty (content_type_headers)) {
238
238
typedef typename char_<Tag>::type char_type;
239
- static char_type* content_type = " x-application/octet-stream" ;
239
+ static char_type const content_type[] = " x-application/octet-stream" ;
240
240
request << header (" Content-Type" , content_type);
241
241
}
242
242
}
You can’t perform that action at this time.
0 commit comments