From 7e16bcfbd89259e91b7477ed47aa3c02fffc5c60 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Sat, 7 Dec 2024 13:40:05 +0100 Subject: [PATCH] Remove unused header. --- src/zip_util.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/zip_util.cc b/src/zip_util.cc index a1fee0d6..f11c6b1a 100644 --- a/src/zip_util.cc +++ b/src/zip_util.cc @@ -33,8 +33,6 @@ #include "zip_util.h" -#include - #include "Exception.h" ZipSource::~ZipSource() { @@ -62,7 +60,7 @@ uint64_t ZipSource::read(void *data, uint64_t length) const { if (n < 0) { throw Exception(error()); } - + return static_cast(n); }