diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-14 19:28:50 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-08-14 19:28:50 +0200 |
commit | 40e1fdd1331f93f2e69c01f3acf901fead48f143 (patch) | |
tree | 05d59850f90a855bdeb779285df5a69884c7d52b /api | |
parent | 359da594db4580f7578276d8f1b420a23510f5ac (diff) |
some style fixes
Diffstat (limited to 'api')
-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 8b94c9d3..b9d2d503 100644 --- a/api/plugin-support.hpp +++ b/api/plugin-support.hpp @@ -40,7 +40,7 @@ extern "C" typedef Metadata* (*OPENTRACK_METADATA_FUNPTR)(void); struct dylib final { - enum Type { Filter = 0xdeadbabe, Tracker = 0xcafebeef, Protocol = 0xdeadf00d, Invalid = 0xcafebabe }; + enum Type : unsigned { Filter = 0xdeadbabeu, Tracker = 0xcafebeefu, Protocol = 0xdeadf00du, Invalid = 0xcafebabeu }; dylib(const QString& filename_, Type t) : type(Invalid), |