From 9d25f4e327c37cd32042d9b55c14b26a201054ec Mon Sep 17 00:00:00 2001 From: Tor Brede Vekterli Date: Mon, 6 Jan 2025 14:55:03 +0000 Subject: [PATCH] Remove ancient and unused VDS-era header file --- .../filestorage/debugverifications.h | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 storage/src/vespa/storage/persistence/filestorage/debugverifications.h diff --git a/storage/src/vespa/storage/persistence/filestorage/debugverifications.h b/storage/src/vespa/storage/persistence/filestorage/debugverifications.h deleted file mode 100644 index 9c890dad2941..000000000000 --- a/storage/src/vespa/storage/persistence/filestorage/debugverifications.h +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -/** - * @class storage::DebugVerifications - * @ingroup filestorage - * - * @brief Class containing some parameters for debug verifications. - * - * The persistence layer has config for what to verify as a bitmask. - * This class is a simple helper class defining an enum such that we - * can refer to the various parts with names instead of numbers. - */ - -#pragma once - -namespace storage { - -struct DebugVerifications -{ - enum Types { - SLOTFILE_INTEGRITY_AFTER_PUT = 0x001, - SLOTFILE_INTEGRITY_AFTER_UPDATE = 0x002, - SLOTFILE_INTEGRITY_AFTER_COMPACT = 0x004, - SLOTFILE_INTEGRITY_AFTER_MERGE = 0x008, - SLOTFILE_INTEGRITY_AFTER_REMOVE = 0x010, - SLOTFILE_INTEGRITY_AFTER_REVERT = 0x020, - SLOTFILE_INTEGRITY_AFTER_MULTIOP = 0x040, - SLOTFILE_INTEGRITY_AFTER_REMOVEALL = 0x080, - SLOTFILE_INTEGRITY_AFTER_JOIN = 0x100, - SLOTFILE_INTEGRITY_AFTER_SPLIT = 0x200, - SLOTFILE_INTEGRITY_AFTER_REMOVELOCATION = 0x400, - FILESTORTHREAD_DISK_MATCHES_BUCKETDB = 0x800 - }; -}; - -} // storage -