detect_ssl uses bool

close #1568
This commit is contained in:
Eelis van der Weegen
2019-04-12 01:47:32 +02:00
committed by Vinnie Falco
parent df0e9336bf
commit 9b10f08692
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
Version 251:
* Clean up CI scripts
* detect_ssl uses bool
--------------------------------------------------------------------------------
Version 250: Version 250:
* Use SaxonHE in reference generation * Use SaxonHE in reference generation

View File

@@ -830,7 +830,7 @@ public:
} }
void void
on_detect(beast::error_code ec, boost::tribool result) on_detect(beast::error_code ec, bool result)
{ {
if(ec) if(ec)
return fail(ec, "detect"); return fail(ec, "detect");

View File

@@ -530,7 +530,7 @@ public:
} }
void void
on_detect(beast::error_code ec, boost::tribool result) on_detect(beast::error_code ec, bool result)
{ {
if(ec) if(ec)
return fail(ec, "detect"); return fail(ec, "detect");