Tidy up declarations and files:

* Adjust formatting
* Fix inline namespace warning in main.cpp
* Fix streambuf op ambiguous variadic constructor
* Rename variables for clarity
This commit is contained in:
Vinnie Falco
2016-05-04 11:04:58 -04:00
parent 7eed701682
commit 258cd2cb87
7 changed files with 24 additions and 23 deletions

View File

@@ -60,11 +60,9 @@ public:
template<class DeducedHandler>
explicit
teardown_ssl_op(
DeducedHandler&& h,
stream_type& stream)
DeducedHandler&& h, stream_type& stream)
: d_(std::make_shared<data>(
std::forward<DeducedHandler>(h),
stream))
std::forward<DeducedHandler>(h), stream))
{
(*this)(error_code{}, false);
}