From ce295f8bc2a30a7baaffea0b4ad9fd2707357522 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Fri, 16 Feb 2024 23:54:34 +0900 Subject: [PATCH] op_store: remove unneeded repr(u8) from RemoteRefState It no longer makes sense after e1fd402d3948 "Fix the ContentHash implementations for std::Option, MergedTreeId, and RemoteRefState." --- lib/src/op_store.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/op_store.rs b/lib/src/op_store.rs index 750f996a7..1e0e282f6 100644 --- a/lib/src/op_store.rs +++ b/lib/src/op_store.rs @@ -203,7 +203,6 @@ impl RemoteRef { /// Whether the ref is tracked or not. #[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)] -#[repr(u8)] pub enum RemoteRefState { /// Remote ref is not merged in to the local ref. New,