We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec647d7 commit 59dddc3Copy full SHA for 59dddc3
1 file changed
modules/deduplicator/src/timeoutBucket.hpp
@@ -96,7 +96,7 @@ class alignas(g_CACHE_LINE_SIZE) TimeoutBucket {
96
* Defines the possible outcomes of an `insert` operation, indicating whether a key was newly
97
* inserted, was already present and valid, or was replaced due to bucket overflow.
98
*/
99
- enum class InsertResult {
+ enum class InsertResult : uint8_t {
100
INSERTED, ///< A new key was successfully inserted into the bucket.
101
ALREADY_PRESENT, ///< The key was found in the bucket and is still valid (not timed out).
102
REPLACED, ///< The bucket was full; an existing key was replaced to make room for the new
0 commit comments