summaryrefslogtreecommitdiff
path: root/src/other_tools/utils/archive_ops.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/other_tools/utils/archive_ops.hpp')
-rw-r--r--src/other_tools/utils/archive_ops.hpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/other_tools/utils/archive_ops.hpp b/src/other_tools/utils/archive_ops.hpp
index 22cf7e4b..6ad5b7c4 100644
--- a/src/other_tools/utils/archive_ops.hpp
+++ b/src/other_tools/utils/archive_ops.hpp
@@ -25,13 +25,7 @@ using archive = struct archive;
using archive_entry = struct archive_entry;
}
-enum class ArchiveType : size_t {
- kArchiveTypeZip,
- kArchiveTypeTar,
- kArchiveTypeTarGz,
- kArchiveTypeTarBz2,
- kArchiveTypeTarXz
-};
+enum class ArchiveType : size_t { Zip, Tar, TarGz, TarBz2, TarXz };
/// \brief Class handling archiving and unarchiving operations via libarchive
class ArchiveOps {