diff options
author | Max Kellermann <max@musicpd.org> | 2020-09-21 11:38:19 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-09-21 11:38:24 +0200 |
commit | 2c05752071cd3d6e7939de6590eafe02ff9e09f5 (patch) | |
tree | 488dda7401d64463f4d66ccd80d47fcabfc78261 /src/archive | |
parent | 7c8427b0f7d34bc7078736ce3fa7142cce5cc0e6 (diff) |
archive/iso9660: remove unused function CEILING()
Diffstat (limited to 'src/archive')
-rw-r--r-- | src/archive/plugins/Iso9660ArchivePlugin.cxx | 6 |
1 files changed, 0 insertions, 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 <utility> -static constexpr size_t -CEILING(size_t x, size_t y) noexcept -{ - return (x + y - 1) / y; -} - struct Iso9660 { iso9660_t *const iso; |