Format all C++ and Java code via clang-format

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-17 14:32:37 +07:00
parent 9f0290c0ec
commit bfffa1fff4
2169 changed files with 56441 additions and 64188 deletions

View File

@@ -31,7 +31,7 @@ std::optional<LogLevel> FromString(std::string const & s)
ASSERT(!s.empty(), ("Log level should not be empty"));
auto const & names = GetLogLevelNames();
const auto it = std::find(names.begin(), names.end(), std::toupper(s[0]));
auto const it = std::find(names.begin(), names.end(), std::toupper(s[0]));
if (it == names.end())
return {};
return static_cast<LogLevel>(std::distance(names.begin(), it));
@@ -39,7 +39,7 @@ std::optional<LogLevel> FromString(std::string const & s)
std::array<char, NUM_LOG_LEVELS> const & GetLogLevelNames()
{
static std::array<char, NUM_LOG_LEVELS> constexpr kLogLevelNames {'D', 'I', 'W', 'E', 'C'};
static std::array<char, NUM_LOG_LEVELS> constexpr kLogLevelNames{'D', 'I', 'W', 'E', 'C'};
return kLogLevelNames;
}