Skip to content

Commit

Permalink
code gen
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jan 16, 2025
1 parent 81a3547 commit 8128618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/tests/winrt/reference_float/src/bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ impl IPropertyValue {
windows_core::Interface::as_raw(this),
&mut result__,
)
.map(|| core::mem::transmute(result__))
.map(|| result__)
}
}
pub fn GetUInt8Array(&self, value: &mut windows_core::Array<u8>) -> windows_core::Result<()> {
Expand Down Expand Up @@ -1279,7 +1279,7 @@ impl<T: windows_core::RuntimeType + 'static> IReference<T> {
windows_core::Interface::as_raw(this),
&mut result__,
)
.map(|| core::mem::transmute(result__))
.map(|| result__)
}
}
pub fn GetUInt8Array(&self, value: &mut windows_core::Array<u8>) -> windows_core::Result<()> {
Expand Down

0 comments on commit 8128618

Please sign in to comment.