summaryrefslogtreecommitdiffstats
path: root/src/common/logging/filter.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-04 16:43:29 +0200
committerLioncash <mathew1800@gmail.com>2018-09-04 16:43:31 +0200
commit978f3a3282f790f409c682368a4d54072d7d8968 (patch)
tree44860a534265356d93cb60c1870dee7af4d2ab18 /src/common/logging/filter.h
parentMerge pull request #1231 from lioncash/global (diff)
downloadyuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar.gz
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar.bz2
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar.lz
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar.xz
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.tar.zst
yuzu-978f3a3282f790f409c682368a4d54072d7d8968.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/filter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/filter.h b/src/common/logging/filter.h
index d5ffc5a58..f13197fc9 100644
--- a/src/common/logging/filter.h
+++ b/src/common/logging/filter.h
@@ -19,7 +19,7 @@ namespace Log {
class Filter {
public:
/// Initializes the filter with all classes having `default_level` as the minimum level.
- Filter(Level default_level = Level::Info);
+ explicit Filter(Level default_level = Level::Info);
/// Resets the filter so that all classes have `level` as the minimum displayed level.
void ResetAll(Level level);