We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde6efc commit 2103b15Copy full SHA for 2103b15
docs/core.rs
@@ -22471,7 +22471,7 @@ pub mod core {
22471
}
22472
22473
#[inline]
22474
- fn get(&self, i: i32) -> size_t {
+ unsafe fn get(&self, i: i32) -> size_t {
22475
let ret = unsafe { sys::cv_MatStep_operator___const_int(self.as_raw_MatStep(), i) };
22476
ret
22477
@@ -22511,7 +22511,7 @@ pub mod core {
22511
22512
22513
22514
- fn get_mut(&mut self, i: i32) -> size_t {
+ unsafe fn get_mut(&mut self, i: i32) -> size_t {
22515
let ret = unsafe { sys::cv_MatStep_operator___int(self.as_raw_mut_MatStep(), i) };
22516
22517
0 commit comments