Commit 461b5ef2 authored by gabime's avatar gabime

Fixed missing ;

parent 7f1f7b62
...@@ -115,7 +115,7 @@ inline spdlog::level::level_enum to_level_enum(const std::string &name) ...@@ -115,7 +115,7 @@ inline spdlog::level::level_enum to_level_enum(const std::string &name)
{level_names[6], level::off}}; // off {level_names[6], level::off}}; // off
auto lvl_it = name_to_level.find(name); auto lvl_it = name_to_level.find(name);
return lvl_it != name_to_level.end() ? lvl_it->second : level::off return lvl_it != name_to_level.end() ? lvl_it->second : level::off;
} }
using level_hasher = std::hash<int>; using level_hasher = std::hash<int>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment