clang-format

This commit is contained in:
Tatsuhiro Tsujikawa 2017-02-09 21:00:47 +09:00
parent 298808f276
commit 8f888b29bd
2 changed files with 15 additions and 16 deletions

View File

@ -610,8 +610,8 @@ void session_impl::do_read() {
{ {
callback_guard cg(*self); callback_guard cg(*self);
auto rv = auto rv = nghttp2_session_mem_recv(self->session_, self->rb_.data(),
nghttp2_session_mem_recv(self->session_, self->rb_.data(), bytes_transferred); bytes_transferred);
if (rv != static_cast<ssize_t>(bytes_transferred)) { if (rv != static_cast<ssize_t>(bytes_transferred)) {
self->call_error_cb(make_error_code( self->call_error_cb(make_error_code(
@ -694,8 +694,7 @@ void session_impl::do_write() {
auto self = this->shared_from_this(); auto self = this->shared_from_this();
write_socket( write_socket([self](const boost::system::error_code &ec, std::size_t n) {
[self](const boost::system::error_code &ec, std::size_t n) {
if (ec) { if (ec) {
self->call_error_cb(ec); self->call_error_cb(ec);
self->stop(); self->stop();