From f028cc43924dce3ebf6e0d8bd505fd6b1854ef38 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 18 Apr 2019 23:37:48 +0900 Subject: [PATCH] clang-format --- src/asio_server_connection.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/asio_server_connection.h b/src/asio_server_connection.h index 56924c71..daf9a664 100644 --- a/src/asio_server_connection.h +++ b/src/asio_server_connection.h @@ -52,9 +52,10 @@ #include "template.h" #if BOOST_VERSION >= 107000 -#define GET_IO_SERVICE(s) ((boost::asio::io_context&)(s).get_executor().context()) +# define GET_IO_SERVICE(s) \ + ((boost::asio::io_context &)(s).get_executor().context()) #else -#define GET_IO_SERVICE(s) ((s).get_io_service()) +# define GET_IO_SERVICE(s) ((s).get_io_service()) #endif namespace nghttp2 {