fix format and remove inline (#601)
This commit is contained in:
parent
68ee875fca
commit
9eb4d41bfc
@ -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++)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user