We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6906c2f commit 72c86e7Copy full SHA for 72c86e7
core/declare.rs
@@ -76,7 +76,7 @@ macro_rules! method_decl_impl {
76
encode::<Sel>(),
77
$(encode::<$t>()),*
78
];
79
- types.iter().cloned().collect()
+ types.iter().map(|&s| s).collect()
80
}
81
82
fn into_imp(self, sel: Sel) -> Result<Imp, ()> {
core/lib.rs
@@ -3,7 +3,7 @@
3
#![crate_name = "objc"]
4
#![crate_type = "lib"]
5
6
-#![feature(std_misc, unsafe_destructor)]
+#![feature(unsafe_destructor)]
7
#![warn(missing_docs)]
8
9
extern crate libc;
foundation/lib.rs
@@ -1,7 +1,7 @@
1
#![crate_name = "objc_foundation"]
2
-#![feature(core, std_misc)]
+#![feature(core)]
#[macro_use]
0 commit comments