diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-28 19:39:38 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-28 19:39:38 +0100 |
commit | 350cc98c39417e4948e402bd24babd81489de13d (patch) | |
tree | e838e4fea2d9f644c7b23b3ee0c44478a2908de5 | |
parent | 3516a342d7cf105a8c20666045705d25eabed9e2 (diff) |
api: fix clang-tidy false positive
-rw-r--r-- | api/plugin-support.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp index 33fe1933..c2368047 100644 --- a/api/plugin-support.hpp +++ b/api/plugin-support.hpp @@ -88,7 +88,7 @@ struct dylib final using str = QLatin1String; const struct filter_ { - Type type; + Type type{Invalid}; QLatin1String glob; } filters[] = { { Filter, str(OPENTRACK_LIBRARY_PREFIX "opentrack-filter-*." OPENTRACK_LIBRARY_EXTENSION), }, |