*: add "noexcept" to many, many function prototypes
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing.
This commit is contained in:
@@ -89,7 +89,8 @@ print_supported_uri_schemes(Response &r)
|
||||
}
|
||||
}
|
||||
|
||||
bool uri_supported_scheme(const char *uri)
|
||||
bool
|
||||
uri_supported_scheme(const char *uri) noexcept
|
||||
{
|
||||
const char *const*urlPrefixes = remoteUrlPrefixes;
|
||||
|
||||
|
Reference in New Issue
Block a user