Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit d274b15

Browse files
Fix "extra mut" warning
1 parent c0adf58 commit d274b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/value.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ impl Value {
199199
}
200200

201201
#[doc(hidden)]
202-
pub fn into_raw(mut self) -> gobject_sys::GValue {
202+
pub fn into_raw(self) -> gobject_sys::GValue {
203203
unsafe {
204204
let ret = ptr::read(&self.0);
205205
mem::forget(self);

0 commit comments

Comments
 (0)