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 e678e0f commit a28d065Copy full SHA for a28d065
intel-sgx/aesm-client/src/lib.rs
@@ -20,6 +20,10 @@
20
// To fix this error, which appears in generated code:
21
// "lint `box_pointers` has been removed: it does not detect other kinds of allocations, and existed only for historical reasons."
22
#![allow(renamed_and_removed_lints)]
23
+// (nightly only) To fix this error appears in generated code:
24
+// `error: lifetime flowing from input to output with different syntax can be confusing`
25
+#![allow(unknown_lints)]
26
+#![allow(mismatched_lifetime_syntaxes)]
27
28
extern crate byteorder;
29
pub extern crate anyhow;
0 commit comments