| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-09-09 | Rollup merge of #28289 - shepmaster:include_bytes-docs, r=alexcrichton | Manish Goregaokar | -2/+2 | |
| This can be shown with the example code ```rust fn main() { let () = include_bytes!("/etc/hosts"); } Which will have the error: expected `&[u8; 195]`, found `()` | ||||
| 2015-09-09 | Rollup merge of #28283 - rutsky:patch-3, r=steveklabnik | Manish Goregaokar | -1/+1 | |
| r? @steveklabnik | ||||
| 2015-09-09 | Rollup merge of #28281 - rutsky:patch-2, r=steveklabnik | Manish Goregaokar | -4/+4 | |
| r? @steveklabnik | ||||
| 2015-09-09 | Auto merge of #28300 - Manishearth:crate_err, r=eddyb | bors | -12/+138 | |
| Partially fixes #22750 I'll write a test for this when I figure out how to. r? @eddyb cc @steveklabnik | ||||
| 2015-09-09 | Add error code for tuple struct constructor error | Guillaume Gomez | -3/+27 | |
| 2015-09-09 | Add error code for unnecessary visibility qualifier | Guillaume Gomez | -1/+24 | |
| 2015-09-09 | fix capitalization inside sentense | Vladimir Rutsky | -1/+1 | |
| 2015-09-09 | Add error code for enum item visibility error | Guillaume Gomez | -2/+29 | |
| 2015-09-09 | Add new error code for visibility inside a function | Guillaume Gomez | -6/+23 | |
| 2015-09-09 | Add error code for privacy error on exported signature | Guillaume Gomez | -1/+29 | |
| 2015-09-09 | Add new error code for trait privacy error | Guillaume Gomez | -2/+40 | |
| 2015-09-09 | Auto merge of #28297 - lifthrasiir:rustdoc-html-tweaks, r=alexcrichton | bors | -16/+28 | |
| I have tested the result with w3m and I believe this is better than the current template. In detail: - `section.sidebar` -> `nav.sidebar`, also added an unordered list. - `div#help` -> `aside#help`, also added a hidden heading. - The current crate is now emphasized in the sidebar. Fixes #16310. | ||||
| 2015-09-09 | Auto merge of #28277 - DiamondLovesYou:intrinsic-unnamed-addr, r=huonw | bors | -0/+24 | |
| Intrinsics never have an address, so it doesn't make sense to say that their address is unnamed. | ||||
| 2015-09-09 | Auto merge of #28198 - alexcrichton:from-raw-mut, r=aturon | bors | -8/+5 | |
| Conventionally in C `*mut T` is a transfer of ownership where `*const T` is a loan, so `*mut T` is likely the more appropriate return type for these functions. Additionally, this more closely mirrors the APIs on `Box` for this sort of functionality. cc #27769 | ||||
| 2015-09-08 | Remove references to removed Valgrind headers | Andrew Paseltiner | -98/+0 | |
| 2015-09-08 | Auto merge of #28264 - mneumann:dragonfly_backend_fixes2, r=alexcrichton | bors | -2/+0 | |
| Having -L/usr/local/lib in the linking path by default interferes with an already installed version of Rust during building of Rust. | ||||
| 2015-09-08 | Add tests for #17001, #21449, #22992, #23208, #23442 | Andrew Paseltiner | -0/+208 | |
| Closes #17001 Closes #21449 Closes #22992 Closes #23208 Closes #23442 | ||||
| 2015-09-08 | Auto merge of #28241 - dhuseby:adding_openbsd_snapshot, r=alexcrichton | bors | -0/+1 | |
| @alexcrichton please upload this snapshot when landing: https://github.com/dhuseby/rust-manual-snapshots/raw/master/rust-stage0-2015-08-11-1af31d4-openbsd-x86_64-9cae790c4ca19b1b29a048605ce249fe1c20a498.tar.bz2 BTW, this is the snapshot that @semarie has published on his website for use in the OpenBSD port for rust. Credit goes to him. | ||||
| 2015-09-09 | Print correct crate name | Manish Goregaokar | -3/+5 | |
| 2015-09-09 | Add test | Manish Goregaokar | -0/+71 | |
| 2015-09-09 | Fix fixme, add crate check | Manish Goregaokar | -2/+2 | |
| 2015-09-08 | Use 'a different' for trait object mismatches too | Manish Goregaokar | -12/+17 | |
| 2015-09-08 | Handle trait objects | Manish Goregaokar | -15/+26 | |
| 2015-09-08 | Auto merge of #28173 - alexcrichton:llvm-37, r=brson | bors | -1/+1 | |
| This updates the jemalloc and LLVM submodules to the recently released 4.0.0 and 3.7 versions. There's no breakage on the LLVM side of things because we had already been tracking the 3.7 release branch for awhile and no breakage was introduced, and jemalloc apparently is stable enough that nothing broke! | ||||
| 2015-09-08 | Auto merge of #28292 - kud1ing:patch-1, r=steveklabnik | bors | -3/+3 | |
| The dates are taken from * https://www.rust-lang.org/install.html * http://blog.rust-lang.org/2015/06/25/Rust-1.1.html * http://blog.rust-lang.org/2015/05/15/Rust-1.0.html | ||||
| 2015-09-09 | rustdoc: Tweak the main template and CSS for semantic mark-up. | Kang Seonghoon | -16/+28 | |
| - section.sidebar -> nav.sidebar, also added an unordered list. - div#help -> aside#help, also added a hidden heading. - the current crate is now emphasized in the sidebar. Fixes #16310. | ||||
| 2015-09-08 | Add note for when a type error comes from similarly named objects from two ↵ | Manish Goregaokar | -0/+37 | |
| different crate of the same name (#22750) | ||||
| 2015-09-08 | Fix small sentence about references | Steve Klabnik | -2/+2 | |
| Thanks Eric, reported via email | ||||
| 2015-09-08 | Auto merge of #28287 - llogiq:clippy, r=Manishearth | bors | -272/+252 | |
| It's a large number of small improvements to the code, mostly readability-related, but removing closures and replacing `str::to_string()` with `.to_owned()` should also positively affect performance. r? @Manishearth (once it compiles, of course :smile:) | ||||
| 2015-09-08 | Fix link to hygienic macros on Wikipedia | midinastasurazz | -1/+1 | |
| 2015-09-08 | Reverted for-loop, it messes up type inference | llogiq | -1/+2 | |
| 2015-09-08 | Add release days, fixes #28228 | kud1ing | -3/+3 | |
| 2015-09-08 | Let's see if lifetime elision works in this case | llogiq | -1/+1 | |
| 2015-09-08 | Fixed required type coercion | llogiq | -1/+2 | |
| I'd have thought that the types of the slice::Split would have been inferred, but this appears not to be the case. Reverted this one change. | ||||
| 2015-09-08 | Auto merge of #28291 - nrc:shr_span_fix, r=sfackler | bors | -1/+21 | |
| 2015-09-08 | Fix span bug with >> and type bindings | Nick Cameron | -1/+21 | |
| 2015-09-08 | Auto merge of #28246 - huonw:lang-tracking-issues, r=alexcrichton | bors | -110/+145 | |
| This is similar to the libs version, which allow an `issue` field in the `#[unstable]` attribute. cc #28244 | ||||
| 2015-09-08 | Allow tracking issues for lang features. | Huon Wilson | -110/+145 | |
| This is similar to the libs version, which allow an `issue` field in the `#[unstable]` attribute. cc #28244 | ||||
| 2015-09-07 | Clarify that `include_bytes!` returns a reference to an array, not just a slice | Jake Goulding | -2/+2 | |
| This can be shown with the example code ```rust fn main() { let () = include_bytes!("/etc/hosts"); } Which will have the error: expected `&[u8; 195]`, found `()` | ||||
| 2015-09-08 | fixes/improvements thanks to @Manishearth | Andre Bogus | -6/+4 | |
| 2015-09-08 | some more clippy-based improvements | Andre Bogus | -273/+253 | |
| 2015-09-07 | Auto merge of #28285 - steveklabnik:split_at_idiom, r=arielb1 | bors | -1/+3 | |
| Generally, including everything that makes an unsafe block safe in the block is good style. Since the assert! is what makes this safe, it should go inside the block. I also added a few bits of whitespace. This is of course, a little style thing, so no worries if we don't want this patch. | ||||
| 2015-09-07 | libsyntax: restore lost error message | Aleksey Kladov | -1/+5 | |
| 2015-09-07 | libsyntax: remove dead code from parser.rs | Aleksey Kladov | -35/+24 | |
| Both `parse_tuple_struct_body` and `parse_item_struct` handled the case of unit like struct. The redundancy is removed, `parse_tuple_struct_body` now handles only real tuple structs. | ||||
| 2015-09-07 | Use unsafe more idiomatically | Steve Klabnik | -1/+3 | |
| Generally, including everything that makes an unsafe block safe in the block is good style. Since the assert! is what makes this safe, it should go inside the block. I also added a few bits of whitespace. | ||||
| 2015-09-07 | Auto merge of #28278 - pfpacket:typo, r=steveklabnik | bors | -1/+1 | |
| 2015-09-07 | fix punctuation in list (again) | Vladimir Rutsky | -2/+2 | |
| 2015-09-07 | fix capitalization inside sentense | Vladimir Rutsky | -1/+1 | |
| 2015-09-07 | fix punctuation in list | Vladimir Rutsky | -2/+2 | |
| r? @steveklabnik | ||||
| 2015-09-07 | Auto merge of #28275 - hunan-rostomyan:patch-1, r=steveklabnik | bors | -2/+2 | |
