summaryrefslogtreecommitdiffstats
path: root/api/logic/net/MetaCacheSink.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2018-06-28 23:18:45 +0200
committerPetr Mrázek <peterix@gmail.com>2018-06-28 23:18:45 +0200
commit7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e (patch)
tree59d922b5c35a70542355ae26f6a2dc442afa5307 /api/logic/net/MetaCacheSink.cpp
parentb5f636b3d57a63f634c4efe5a4ccd9a91f53df04 (diff)
downloadMultiMC-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar
MultiMC-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar.gz
MultiMC-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar.lz
MultiMC-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar.xz
MultiMC-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.zip
NOISSUE fix all sorts of warnings, enable `Werror` and `pedantic`
Diffstat (limited to 'api/logic/net/MetaCacheSink.cpp')
-rw-r--r--api/logic/net/MetaCacheSink.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/logic/net/MetaCacheSink.cpp b/api/logic/net/MetaCacheSink.cpp
index c9d75310..b4b337d6 100644
--- a/api/logic/net/MetaCacheSink.cpp
+++ b/api/logic/net/MetaCacheSink.cpp
@@ -10,12 +10,12 @@ MetaCacheSink::MetaCacheSink(MetaEntryPtr entry, ChecksumValidator * md5sum)
:Net::FileSink(entry->getFullPath()), m_entry(entry), m_md5Node(md5sum)
{
addValidator(md5sum);
-};
+}
MetaCacheSink::~MetaCacheSink()
{
// nil
-};
+}
JobStatus MetaCacheSink::initCache(QNetworkRequest& request)
{