From 15b35091df95e7ed234f3c1bb5e4a93edf3ae15a Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Tue, 8 Dec 2020 19:38:20 +0100 Subject: [PATCH] Remove useless `config.h` file --- include/dwarfs/config.h | 28 ---------------------------- src/dwarfs/filesystem_v2.cpp | 1 - 2 files changed, 29 deletions(-) delete mode 100644 include/dwarfs/config.h diff --git a/include/dwarfs/config.h b/include/dwarfs/config.h deleted file mode 100644 index 32f13916..00000000 --- a/include/dwarfs/config.h +++ /dev/null @@ -1,28 +0,0 @@ -/* vim:set ts=2 sw=2 sts=2 et: */ -/** - * \author Marcus Holland-Moritz (github@mhxnet.de) - * \copyright Copyright (c) Marcus Holland-Moritz - * - * This file is part of dwarfs. - * - * dwarfs is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * dwarfs is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with dwarfs. If not, see . - */ - -#pragma once - -namespace dwarfs { - -static const unsigned MIN_BLOCK_BITS_SIZE = 12; -static const unsigned MAX_BLOCK_BITS_SIZE = 28; -} // namespace dwarfs diff --git a/src/dwarfs/filesystem_v2.cpp b/src/dwarfs/filesystem_v2.cpp index 8fdc6f37..18bd1f3e 100644 --- a/src/dwarfs/filesystem_v2.cpp +++ b/src/dwarfs/filesystem_v2.cpp @@ -37,7 +37,6 @@ #include "dwarfs/block_cache.h" #include "dwarfs/block_compressor.h" -#include "dwarfs/config.h" #include "dwarfs/filesystem_v2.h" #include "dwarfs/filesystem_writer.h" #include "dwarfs/fstypes.h"