1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 09:55:55 +00:00

Merge pull request #13696 from Chocobo1/warnings

Suppress compiler warnings
This commit is contained in:
Mike Tzou 2020-11-02 10:31:41 +08:00 committed by GitHub
commit 2a2a80b0bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 7 deletions

View File

@ -32,12 +32,6 @@
namespace namespace
{ {
bool isPaused(const lt::torrent_status &torrentStatus)
{
return ((torrentStatus.flags & lt::torrent_flags::paused)
&& !(torrentStatus.flags & lt::torrent_flags::auto_managed));
}
bool isAutoManaged(const lt::torrent_status &torrentStatus) bool isAutoManaged(const lt::torrent_status &torrentStatus)
{ {
return static_cast<bool>(torrentStatus.flags & lt::torrent_flags::auto_managed); return static_cast<bool>(torrentStatus.flags & lt::torrent_flags::auto_managed);

View File

@ -40,7 +40,7 @@ class TorrentContentModelFolder;
class TorrentContentModelItem class TorrentContentModelItem
{ {
Q_DECLARE_TR_FUNCTIONS(TorrentContentModelItem); Q_DECLARE_TR_FUNCTIONS(TorrentContentModelItem)
public: public:
enum TreeItemColumns enum TreeItemColumns