Skip to content
Snippets Groups Projects
Commit 2949d955 authored by Lioncash's avatar Lioncash
Browse files

common/logging/filter: Replace C-style case with C++ static_cast

parent 978f3a32
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,6 @@ public:
bool IsDebug() const;
private:
std::array<Level, (size_t)Class::Count> class_levels;
std::array<Level, static_cast<size_t>(Class::Count)> class_levels;
};
} // namespace Log
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment