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
{
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)
{
return static_cast<bool>(torrentStatus.flags & lt::torrent_flags::auto_managed);

View file

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