Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5219b94

Browse files
committed
squash: use boost array/chrono for 1.55
1 parentfcf669d commit5219b94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎boost/network/protocol/http/client/connection/async_normal.hpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ struct http_async_connection
187187
callback, generator, ec, endpoint_range);
188188
}));
189189
if (timeout_ >0) {
190-
timer_.expires_from_now(std::chrono::seconds(timeout_));
190+
timer_.expires_from_now(boost::chrono::seconds(timeout_));
191191
timer_.async_wait(request_strand_.wrap([=] (boost::system::error_codeconst &ec) {
192192
self->handle_timeout(ec);
193193
}));

‎boost/network/protocol/http/server/async_connection.hpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ struct async_connection
345345
}
346346

347347
private:
348-
typedefstd::array<char, BOOST_NETWORK_HTTP_SERVER_CONNECTION_BUFFER_SIZE>
348+
typedefboost::array<char, BOOST_NETWORK_HTTP_SERVER_CONNECTION_BUFFER_SIZE>
349349
buffer_type;
350350

351351
public:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp