Skip to content

Commit 2103b15

Browse files
committed
Update docs
1 parent cde6efc commit 2103b15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/core.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22471,7 +22471,7 @@ pub mod core {
2247122471
}
2247222472

2247322473
#[inline]
22474-
fn get(&self, i: i32) -> size_t {
22474+
unsafe fn get(&self, i: i32) -> size_t {
2247522475
let ret = unsafe { sys::cv_MatStep_operator___const_int(self.as_raw_MatStep(), i) };
2247622476
ret
2247722477
}
@@ -22511,7 +22511,7 @@ pub mod core {
2251122511
}
2251222512

2251322513
#[inline]
22514-
fn get_mut(&mut self, i: i32) -> size_t {
22514+
unsafe fn get_mut(&mut self, i: i32) -> size_t {
2251522515
let ret = unsafe { sys::cv_MatStep_operator___int(self.as_raw_mut_MatStep(), i) };
2251622516
ret
2251722517
}

0 commit comments

Comments
 (0)