Removed space in winking face smiley.

This commit is contained in:
Vladimir Chebotarev 2021-01-26 11:28:47 +03:00
parent 7a675c996e
commit 25037edfa6

View File

@ -62,7 +62,7 @@ S3AuthSettings StorageS3Settings::getSettings(const String & endpoint) const
auto next_prefix_setting = settings.upper_bound(endpoint);
/// Linear time algorithm may be replaced with logarithmic with prefix tree map.
for (auto possible_prefix_setting = next_prefix_setting; possible_prefix_setting != settings.begin(); )
for (auto possible_prefix_setting = next_prefix_setting; possible_prefix_setting != settings.begin();)
{
std::advance(possible_prefix_setting, -1);
if (boost::algorithm::starts_with(endpoint, possible_prefix_setting->first))