mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user