about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2015-04-02Rollup merge of #23924 - nrc:unqual-assoc3, r=alexcrichtonManish Goregaokar-124/+171
2015-04-02Rollup merge of #23895 - nikomatsakis:fn-trait-inheritance-add-impls, r=pnkfelixManish Goregaokar-1270/+1627
2015-04-02Rollup merge of #23867 - nikomatsakis:issue-23086-take-3, r=pnkfelixManish Goregaokar-227/+808
2015-04-02Rollup merge of #23847 - bcoopers:read_clarification, r=sfacklerManish Goregaokar-8/+4
2015-04-02Rollup merge of #23844 - kvark:try_unique, r=alexcrichtonManish Goregaokar-6/+50
2015-04-02Rollup merge of #23066 - michaelwoerister:unreachable-if, r=pnkfelixManish Goregaokar-2/+128
2015-04-01Remove `Thunk` struct and `Invoke` trait; change `Thunk` to be an aliasNiko Matsakis-93/+56
2015-04-01Add (unstable) FnBox trait as a nicer replacement for `Thunk`. The docNiko Matsakis-0/+76
2015-04-01cleanup: Test formattingRicho Healey-11/+22
2015-04-01std: Unignore a test for #10663Richo Healey-2/+1
2015-04-01rustup: Default to the beta channelAlex Crichton-2/+5
2015-04-01iOS: os::last_os_error() falloutValerii Hiora-2/+2
2015-04-01Merge branch 'fix-rustup' of https://github.com/richo/rustAlex Crichton-8/+16
2015-04-01Missing importsNiko Matsakis-0/+2
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-242/+273
2015-04-01Fallout in libsyntaxNiko Matsakis-27/+27
2015-04-01Fallout out rustcNiko Matsakis-171/+173
2015-04-01Fallout in testsNiko Matsakis-142/+154
2015-04-01Make the trait Copy extend Clone.Niko Matsakis-6/+1
2015-04-01Fallout in libsyntax/librustc: use newtype'd options for linked lists,Niko Matsakis-9/+19
2015-04-01Fallout in libstd: remove impls now considered to conflict.Niko Matsakis-17/+12
2015-04-01Update tests for new coherence rules, and add a swatch of new testsNiko Matsakis-36/+431
2015-04-01Add `#[fundamental]` annotations into libcore so that `Sized` and theNiko Matsakis-0/+9
2015-04-01Implement the changes to coherence such that we consider a type to beNiko Matsakis-165/+337
2015-04-01Fix sidebar bugCarlos Galarza-4/+6
2015-04-01Simplify `match` branches in iter.rs exampleCorey Farwell-4/+2
2015-04-01Auto merge of #23109 - nikomatsakis:closure-region-hierarchy, r=pnkfelixbors-197/+218
2015-04-01Update commentsNiko Matsakis-30/+30
2015-04-01Remove the `Option<>` since when computing LUB since I believe that theNiko Matsakis-25/+27
2015-04-01Implement the new region hierarchy rules, in which regions from distinctNiko Matsakis-140/+110
2015-04-01Add a meta-hierarchy of trees -- in future, each fn body will inhabitNiko Matsakis-44/+93
2015-04-01Update android tests to reflect API switch from `os::env` to `env::vars`.Felix S. Klock II-4/+3
2015-04-01Test fixes and rebase conflictsAlex Crichton-12/+20
2015-04-01Don't reborrow the target of a `write!()`Chris Wong-1/+1
2015-04-01Fix rust book error-handling.md for new std::io.kgv-6/+7
2015-04-01Add examples + documentation for std::pathSteve Klabnik-0/+213
2015-03-31Added Arc::try_uniqueDzmitry Malyshau-6/+50
2015-04-01Tidying up and reformattingNick Cameron-116/+154
2015-03-31rollup merge of #23923: steveklabnik/gh23688Alex Crichton-0/+23
2015-03-31rollup merge of #23921: aturon/issue-17746Alex Crichton-0/+33
2015-03-31rollup merge of #23863: pnkfelix/arith-oflo-const-evalAlex Crichton-261/+1727
2015-04-01dealing with fallout to the tests, in particular diffs between 32- vs 64-bit ...Felix S. Klock II-10/+18
2015-04-01Unify handling of checking repeat-count validity.Felix S. Klock II-13/+1
2015-04-01Fixes to compile-fail error messages post-rebase.Felix S. Klock II-3/+12
2015-04-01Include feature `core` to get access to `wrapping_add`.Felix S. Klock II-0/+3
2015-04-01Test cases for checking arithmetic overflow during const eval.Felix S. Klock II-0/+301
2015-04-01Fallout from changes for overflow-checking during constant evaluation.Felix S. Klock II-7/+17
2015-04-01rustc_trans::trans::consts add overflow checkingFelix S. Klock II-5/+124
2015-04-01rustc::middle::const_eval : add overflow-checking for {+, -, *}.Felix S. Klock II-81/+297
2015-04-01rust_llvm: Add way to reflectively ask if a ValueRef is a known constant int.Felix S. Klock II-0/+27