Skip to content

Commit 859a892

Browse files
committed
Add allow(non_camel_case_types) to unconverted crates
1 parent 5c18bf6 commit 859a892

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

src/cargo/cargo.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
#[allow(vecs_implicitly_copyable,
2222
non_implicitly_copyable_typarams)];
23+
#[allow(non_camel_case_types)];
2324

2425
extern mod core(vers = "0.4");
2526
extern mod std(vers = "0.4");

src/compiletest/compiletest.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#[no_core];
44

55
#[allow(vecs_implicitly_copyable)];
6+
#[allow(non_camel_case_types)];
67

78
extern mod core(vers = "0.4");
89
extern mod std(vers = "0.4");

src/fuzzer/fuzzer.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#[no_core];
66

77
#[allow(vecs_implicitly_copyable)];
8+
#[allow(non_camel_case_types)];
89

910
extern mod core(vers = "0.4");
1011
extern mod std(vers = "0.4");

src/libsyntax/syntax.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#[no_core];
1010

1111
#[allow(vecs_implicitly_copyable)];
12+
#[allow(non_camel_case_types)];
1213

1314
extern mod core(vers = "0.4");
1415
extern mod std(vers = "0.4");

src/rustc/driver/rustc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#[no_core];
22
#[allow(vecs_implicitly_copyable)];
3+
#[allow(non_camel_case_types)];
34

45
extern mod core(vers = "0.4");
56
extern mod std(vers = "0.4");

src/rustc/rustc.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#[no_core];
1313

1414
#[allow(vecs_implicitly_copyable)];
15+
#[allow(non_camel_case_types)];
1516
// #[warn(deprecated_pattern)];
1617

1718
extern mod core(vers = "0.4");

src/rustdoc/rustdoc.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#[allow(vecs_implicitly_copyable,
1515
non_implicitly_copyable_typarams)];
16+
#[allow(non_camel_case_types)];
1617

1718
extern mod core(vers = "0.4");
1819
extern mod std(vers = "0.4");

0 commit comments

Comments
 (0)