Skip to content

Commit 8128b88

Browse files
committed
More whitespace tidying
1 parent 6b6720a commit 8128b88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Release/src/http/listener/http_listener.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ static void check_listener_uri(const http::uri &address)
4242

4343
#ifdef _MS_WINDOWS
4444
//HTTP Server API includes SSL support
45-
if (address.scheme() != U("http") && address.scheme() != U("https"))
45+
if(address.scheme() != U("http") && address.scheme() != U("https"))
4646
{
4747
throw std::invalid_argument("URI scheme must be 'http' or 'https'");
4848
}
4949
#else
50-
if (address.scheme() == U("https"))
50+
if(address.scheme() == U("https"))
5151
{
5252
throw std::invalid_argument("Listeners using 'https' are not yet supported");
5353
}
5454

55-
if (address.scheme() != U("http"))
55+
if(address.scheme() != U("http"))
5656
{
5757
throw std::invalid_argument("URI scheme must be 'http'");
5858
}

0 commit comments

Comments
 (0)