From 0c3cba1dfe12f719ea67ca7d8bf3e60f198745c8 Mon Sep 17 00:00:00 2001 From: Seokju Na Date: Sat, 29 Mar 2025 12:14:12 +0900 Subject: [PATCH] add a missing status field --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 4b26b8c023..541277bfba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1049,6 +1049,8 @@ bitflags! { const WT_TYPECHANGE = raw::GIT_STATUS_WT_TYPECHANGE as u32; #[allow(missing_docs)] const WT_RENAMED = raw::GIT_STATUS_WT_RENAMED as u32; + #[allow(missing_docs)] + const WT_UNREADABLE = raw::GIT_STATUS_WT_UNREADABLE as u32; #[allow(missing_docs)] const IGNORED = raw::GIT_STATUS_IGNORED as u32;