diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-04 16:43:29 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-04 16:43:31 +0200 |
commit | 978f3a3282f790f409c682368a4d54072d7d8968 (patch) | |
tree | 44860a534265356d93cb60c1870dee7af4d2ab18 /src/common/logging | |
parent | Merge pull request #1231 from lioncash/global (diff) | |
download | yuzu-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 'src/common/logging')
-rw-r--r-- | src/common/logging/filter.h | 2 |
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); |