Skip to content

Commit 1114ab6

Browse files
committedAug 31, 2018
Auto merge of #53832 - pietroalbini:rollup, r=pietroalbini
Rollup of 20 pull requests Successful merges: - #51760 (Add another PartialEq example) - #53113 (Add example for Cow) - #53129 (remove `let x = baz` which was obscuring the real error) - #53389 (document effect of join on memory ordering) - #53472 (Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.) - #53476 (Add partialeq implementation for TryFromIntError type) - #53513 (Force-inline `shallow_resolve` at its hottest call site.) - #53655 (set applicability) - #53702 (Fix stabilisation version for macro_vis_matcher.) - #53727 (Do not suggest dereferencing in macro) - #53732 (save-analysis: Differentiate foreign functions and statics.) - #53740 (add llvm-readobj to llvm-tools-preview) - #53743 (fix a typo: taget_env -> target_env) - #53747 (Rustdoc fixes) - #53753 (expand keep-stage --help text) - #53756 (Fix typo in comment) - #53768 (move file-extension based .gitignore down to src/) - #53785 (Fix a comment in src/libcore/slice/mod.rs) - #53786 (Replace usages of 'bad_style' with 'nonstandard_style'.) - #53806 (Fix UI issues on Implementations on Foreign types) Failed merges: r? @ghost
2 parents 8adc69a + 6b1fffa commit 1114ab6

File tree

93 files changed

+568
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+568
-344
lines changed
 

‎.gitignore

-46
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,3 @@
1-
*.a
2-
*.aux
3-
*.bc
4-
*.boot
5-
*.bz2
6-
*.cmi
7-
*.cmo
8-
*.cmx
9-
*.cp
10-
*.cps
11-
*.d
12-
*.dSYM
13-
*.def
14-
*.diff
15-
*.dll
16-
*.dylib
17-
*.elc
18-
*.epub
19-
*.exe
20-
*.fn
21-
*.html
22-
*.kdev4
23-
*.ky
24-
*.ll
25-
*.llvm
26-
*.log
27-
*.o
28-
*.orig
29-
*.out
30-
*.patch
31-
*.pdb
32-
*.pdf
33-
*.pg
34-
*.pot
35-
*.pyc
36-
*.rej
37-
*.rlib
38-
*.rustc
39-
*.so
40-
*.swo
41-
*.swp
42-
*.tmp
43-
*.toc
44-
*.tp
45-
*.vr
46-
*.x86
471
*~
482
.#*
493
.DS_Store

‎src/.gitignore

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
*.a
2+
*.aux
3+
*.bc
4+
*.boot
5+
*.bz2
6+
*.cmi
7+
*.cmo
8+
*.cmx
9+
*.cp
10+
*.cps
11+
*.d
12+
*.dSYM
13+
*.def
14+
*.diff
15+
*.dll
16+
*.dylib
17+
*.elc
18+
*.epub
19+
*.exe
20+
*.fn
21+
*.html
22+
*.kdev4
23+
*.ky
24+
*.ll
25+
*.llvm
26+
*.log
27+
*.o
28+
*.orig
29+
*.out
30+
*.patch
31+
*.pdb
32+
*.pdf
33+
*.pg
34+
*.pot
35+
*.pyc
36+
*.rej
37+
*.rlib
38+
*.rustc
39+
*.so
40+
*.swo
41+
*.swp
42+
*.tmp
43+
*.toc
44+
*.tp
45+
*.vr
46+
*.x86

0 commit comments

Comments
 (0)