From 82e894dc88d5b95d72dc9d4fbd9e4746b23ab1e2 Mon Sep 17 00:00:00 2001 From: The-EDev Date: Wed, 27 Apr 2022 06:11:49 +0300 Subject: [PATCH] formatting --- include/crow/app.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/include/crow/app.h b/include/crow/app.h index bf89a7016..ff2281f8c 100644 --- a/include/crow/app.h +++ b/include/crow/app.h @@ -376,10 +376,7 @@ namespace crow ssl_context_.use_certificate_chain_file(crt_filename); ssl_context_.use_private_key_file(key_filename, ssl_context_t::pem); ssl_context_.set_options( - boost::asio::ssl::context::default_workarounds - | boost::asio::ssl::context::no_sslv2 - | boost::asio::ssl::context::no_sslv3 - ); + boost::asio::ssl::context::default_workarounds | boost::asio::ssl::context::no_sslv2 | boost::asio::ssl::context::no_sslv3); return *this; }