diff --git a/bch_bindgen/src/bkey.rs b/bch_bindgen/src/bkey.rs index 2a012508..91d515b7 100644 --- a/bch_bindgen/src/bkey.rs +++ b/bch_bindgen/src/bkey.rs @@ -50,7 +50,6 @@ pub enum BkeyValC<'a> { logged_op_truncate(&'a c::bch_logged_op_truncate), logged_op_finsert(&'a c::bch_logged_op_finsert), accounting(&'a c::bch_accounting), - inode_alloc_cursor(&'a c::bch_inode_alloc_cursor), } impl<'a, 'b> BkeySC<'a> { @@ -107,7 +106,6 @@ impl<'a, 'b> BkeySC<'a> { KEY_TYPE_logged_op_truncate => logged_op_truncate(transmute(self.v)), KEY_TYPE_logged_op_finsert => logged_op_finsert(transmute(self.v)), KEY_TYPE_accounting => accounting(transmute(self.v)), - KEY_TYPE_inode_alloc_cursor => inode_alloc_cursor(transmute(self.v)), KEY_TYPE_MAX => unreachable!(), } }