We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1fbf25 commit 19d5568Copy full SHA for 19d5568
src/tools/tidy/src/issues.txt
@@ -2750,7 +2750,6 @@ ui/lint/issue-1866.rs
2750
ui/lint/issue-19102.rs
2751
ui/lint/issue-20343.rs
2752
ui/lint/issue-30302.rs
2753
-ui/lint/issue-34798.rs
2754
ui/lint/issue-35075.rs
2755
ui/lint/issue-47775-nested-macro-unnecessary-parens-arg.rs
2756
ui/lint/issue-49588-non-shorthand-field-patterns-in-pattern-macro.rs
tests/ui/lint/issue-34798.rs renamed to tests/ui/lint/improper_ctypes/allow-phantomdata-in-ffi.rs
@@ -1,6 +1,8 @@
1
//@ run-pass
2
#![forbid(improper_ctypes)]
3
#![allow(dead_code)]
4
+// issue https://github.com/rust-lang/rust/issues/34798
5
+// We allow PhantomData in FFI so bindgen can bind templated C++ structs with "unused generic args"
6
7
#[repr(C)]
8
pub struct Foo {
0 commit comments