about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2013-11-01auto merge of #10213 : telotortium/rust/rand-fill_bytes-stack-overflow, r=huonwbors-1/+21
2013-11-01auto merge of #10205 : brson/rust/unnamed_addr, r=thestingerbors-0/+2
2013-11-01auto merge of #10196 : huonw/rust/fix-zig, r=alexcrichtonbors-141/+5
2013-10-31auto merge of #10187 : pcwalton/rust/remove-mocks, r=pcwaltonbors-238/+451
2013-10-31auto merge of #10181 : brson/rust/managed_boxes, r=thestingerbors-6/+6
2013-10-31Fix infinite recursion in `fill_bytes()`Robert Irelan-1/+21
2013-10-31Declare all Rust functions as unnamed_addr. Closes #8957Brian Anderson-0/+2
2013-10-31Implement a concat!() format extensionAlex Crichton-3/+117
2013-10-31Make managed_boxes feature gate error less opinionatedBrian Anderson-6/+6
2013-10-31libstd: Remove mocks.Patrick Walton-181/+131
2013-10-31librustc: Implement `|A| -> B` syntax for closures and make bare `fn`Patrick Walton-57/+320
2013-10-31std::rand: correct an off-by-one in the Ziggurat code.Huon Wilson-141/+5
2013-10-31auto merge of #10189 : alexcrichton/rust/inner-statics, r=cmrbors-23/+62
2013-10-31auto merge of #10180 : alexcrichton/rust/flush-default, r=brsonbors-34/+6
2013-10-30auto merge of #10166 : brson/rust/meta, r=alexcrichtonbors-2/+29
2013-10-30auto merge of #10164 : brson/rust/configure, r=brsonbors-1/+1
2013-10-30Forbid type parameters in inner staticsAlex Crichton-23/+62
2013-10-30auto merge of #10120 : Kimundi/rust/remove_sys, r=alexcrichtonbors-229/+187
2013-10-30Make Writer::flush a no-op default methodAlex Crichton-34/+6
2013-10-30syntax: Forbid non-string literals in meta items. #623Brian Anderson-2/+29
2013-10-30auto merge of #10172 : pythonesque/rust/issue-9890, r=thestingerbors-71/+126
2013-10-30Prepared `std::sys` for removal, and made `begin_unwind` simplerMarvin Löbel-229/+187
2013-10-30Special-casing iter_vec_raw to use a counter for zero-size types (Closes #9890).Joshua Yanovski-71/+126
2013-10-30auto merge of #10123 : klutzy/rust/fix-7507, r=alexcrichtonbors-1/+31
2013-10-30auto merge of #10168 : reedlepee123/rust/priv_fields, r=brsonbors-23/+23
2013-10-30test: Add test for LHS expression checkklutzy-0/+20
2013-10-30rustc: Check LHS expression of assignmentklutzy-1/+11
2013-10-30auto merge of #9613 : jld/rust/enum-discrim-size.r0, r=alexcrichtonbors-198/+956
2013-10-30Fix check-fast breakage in new enum test.Jed Davis-1/+1
2013-10-29auto merge of #10163 : brson/rust/rtcxx, r=alexcrichtonbors-159/+0
2013-10-29auto merge of #10161 : brson/rust/upcall, r=alexcrichtonbors-45/+0
2013-10-29auto merge of #10149 : chris-morgan/rust/2013-10-29-vim-updates, r=ericktbors-24/+37
2013-10-30changed all the impl<T> to impl<T: Send> in rt::comm.rs and libstd::comm.rs #...reedlepee-23/+23
2013-10-29auto merge of #10160 : alexcrichton/rust/snapshots, r=pcwaltonbors-6769/+15
2013-10-29rt: Remove array_list.hBrian Anderson-149/+0
2013-10-29rt: Remove rust_thread::detachBrian Anderson-10/+0
2013-10-29rt: Remove four unused upcallsBrian Anderson-45/+0
2013-10-29auto merge of #10145 : TeXitoi/rust/issues-2913, r=bstriebors-50/+46
2013-10-29support for GNU configure syntaxHeather-1/+1
2013-10-29Register new snapshotsAlex Crichton-6769/+15
2013-10-29auto merge of #10134 : reedlepee123/rust/priv_fields, r=brsonbors-7/+4
2013-10-29auto merge of #10140 : brson/rust/comm, r=alexcrichtonbors-8/+7
2013-10-29auto merge of #10136 : hatahet/rust/master, r=alexcrichtonbors-162/+156
2013-10-29auto merge of #10132 : pcwalton/rust/proc, r=pcwaltonbors-72/+252
2013-10-29librustc: Implement the `proc` type as sugar for `~once fn` and `proc`Patrick Walton-72/+252
2013-10-29auto merge of #10058 : alexcrichton/rust/uv-crate, r=brsonbors-178/+7038
2013-10-29Fix type_of for enums to not lose data in some cases when immediate.Jed Davis-24/+32
2013-10-29Add another discriminant-size-related test, this time with fields.Jed Davis-0/+41
2013-10-29Work around const_eval issues by changing signed integer `min_value`s.Jed Davis-1/+2
2013-10-29Add tests for enum discriminant sizing.Jed Davis-7/+271