From b2a73a878d1a62fa81f72001fedb056c86ea0e8f Mon Sep 17 00:00:00 2001 From: "Paul \"Dettorer\" Hervot" Date: Sun, 29 Nov 2015 09:43:20 +0100 Subject: [PATCH] Logging: Convert an old-style cast to static_cast --- src/common/logging/filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/logging/filter.h b/src/common/logging/filter.h index a2b4eca43..4da0d8634 100644 --- a/src/common/logging/filter.h +++ b/src/common/logging/filter.h @@ -48,7 +48,7 @@ public: bool CheckMessage(Class log_class, Level level) const; private: - std::array class_levels; + std::array(Class::Count)> class_levels; }; }