Skip to content

Commit 8721e98

Browse files
authored
Merge pull request #48 from Zadamsa/fix_deduplicator_clang_checks
Fix deduplicator clang checks
2 parents ec647d7 + 59dddc3 commit 8721e98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/deduplicator/src/timeoutBucket.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class alignas(g_CACHE_LINE_SIZE) TimeoutBucket {
9696
* Defines the possible outcomes of an `insert` operation, indicating whether a key was newly
9797
* inserted, was already present and valid, or was replaced due to bucket overflow.
9898
*/
99-
enum class InsertResult {
99+
enum class InsertResult : uint8_t {
100100
INSERTED, ///< A new key was successfully inserted into the bucket.
101101
ALREADY_PRESENT, ///< The key was found in the bucket and is still valid (not timed out).
102102
REPLACED, ///< The bucket was full; an existing key was replaced to make room for the new

0 commit comments

Comments
 (0)