mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-22 00:17:23 -06:00
Migrate away from unsigned integer types
Signed integers should be preferred in these cases.
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
#include "base/path.h"
|
||||
#include "base/utils/version.h"
|
||||
|
||||
using PluginVersion = Utils::Version<unsigned short, 2>;
|
||||
using PluginVersion = Utils::Version<short, 2>;
|
||||
Q_DECLARE_METATYPE(PluginVersion)
|
||||
|
||||
namespace Net
|
||||
|
||||
Reference in New Issue
Block a user