From 2c05752071cd3d6e7939de6590eafe02ff9e09f5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 21 Sep 2020 11:38:19 +0200 Subject: [PATCH] archive/iso9660: remove unused function CEILING() --- src/archive/plugins/Iso9660ArchivePlugin.cxx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/archive/plugins/Iso9660ArchivePlugin.cxx b/src/archive/plugins/Iso9660ArchivePlugin.cxx index 1976390a7..540da0e3f 100644 --- a/src/archive/plugins/Iso9660ArchivePlugin.cxx +++ b/src/archive/plugins/Iso9660ArchivePlugin.cxx @@ -40,12 +40,6 @@ #include -static constexpr size_t -CEILING(size_t x, size_t y) noexcept -{ - return (x + y - 1) / y; -} - struct Iso9660 { iso9660_t *const iso;