Skip to content

Commit d1d393e

Browse files
committed
Fixed build errors on MSVC 2010.
1 parent d51f453 commit d1d393e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boost/network/protocol/http/client/facade.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ namespace boost { namespace network { namespace http {
6363
return pimpl->request_skeleton(request, "POST", true, body_handler);
6464
}
6565

66-
response const post(request const &request, body_callback_function callback) {
66+
response const post(request const &request, body_callback_function_type callback) {
6767
return post(request, string_type(), string_type(), callback);
6868
}
6969

70-
response const post(request const &request, string_type const &body, body_callback_function callback) {
70+
response const post(request const &request, string_type const &body, body_callback_function_type callback) {
7171
return post(request, body, string_type(), callback);
7272
}
7373

0 commit comments

Comments
 (0)