fix format and remove inline (#601)

This commit is contained in:
Victor Vazquez 2020-09-04 21:21:44 +00:00 committed by GitHub
parent 68ee875fca
commit 9eb4d41bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,13 +68,12 @@ const unsigned char c_LocaleInvariantLowercaseTable[256] = {
namespace Azure { namespace Core { namespace Details {
inline unsigned char ToLower(const unsigned char symbol) noexcept
unsigned char ToLower(const unsigned char symbol) noexcept
{
return c_LocaleInvariantLowercaseTable[symbol];
}
std::string const ToLower(const std::string& src) noexcept
std::string const ToLower(const std::string& src) noexcept
{
auto result = std::string(src);
for (auto i = result.begin(); i < result.end(); i++)