summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Improve documentation for slice swap/copy/clone operations.frewsxcv-issue-45636Corey Farwell2017-11-241-13/+106
* Auto merge of #46012 - Gankro:float-conv-transmute, r=sfacklerbors2017-11-242-76/+86
|\
| * Make float::from_bits transmute (and update the documentation to reflect this).Alexis Beingessner2017-11-232-76/+86
* | Auto merge of #45946 - estebank:crate-conflict-diag, r=arielb1bors2017-11-2410-103/+95
|\ \
| * | Use multiline text for crate conflict diagnosticsEsteban Küber2017-11-2210-103/+95
* | | Auto merge of #45942 - Menschenkindlein:master, r=estebankbors2017-11-243-0/+141
|\ \ \
| * | | Use for_each_child_stable in find_moduleMaxim Zholobak2017-11-231-1/+1
| * | | Add module population and case of enum in place of expressionMaxim Zholobak2017-11-233-9/+31
| * | | Add failing testcasesMaxim Zholobak2017-11-152-0/+40
| * | | Add hints for the case of confusing enum with its variantsMaxim Zholobak2017-11-131-0/+79
* | | | Auto merge of #46225 - GuillaumeGomez:rollup, r=GuillaumeGomezbors2017-11-239-13/+67
|\ \ \ \
| * \ \ \ Rollup merge of #46220 - rust-lang:frewsxcv-issue-44929, r=kennytmGuillaume Gomez2017-11-231-2/+4
| |\ \ \ \
| | * | | | Clarify stdin behavior of `Command::output`.frewsxcv-issue-44929Corey Farwell2017-11-221-2/+4
| * | | | | Rollup merge of #46218 - rust-lang:frewsxcv-rename-slice-swap-param, r=kennytmGuillaume Gomez2017-11-231-9/+9
| |\ \ \ \ \
| | * | | | | Rename param in `[T]::swap_with_slice` from `src` to `other`.frewsxcv-rename-slice-swap-paramCorey Farwell2017-11-221-9/+9
| | |/ / / /
| * | | | | Rollup merge of #46190 - steveklabnik:fix-releases, r=aturonGuillaume Gomez2017-11-231-1/+8
| |\ \ \ \ \
| | * | | | | Amend RELEASES for 1.22.1steveklabnik2017-11-221-1/+8
| * | | | | | Rollup merge of #46177 - ollie27:std_unicode_debug, r=estebankGuillaume Gomez2017-11-234-1/+7
| |\ \ \ \ \ \
| | * | | | | | Add missing Debug impls to std_unicodeOliver Middleton2017-11-224-1/+7
| * | | | | | | Rollup merge of #45635 - virgil-palanciuc:master, r=kennytmGuillaume Gomez2017-11-232-0/+39
| |\ \ \ \ \ \ \
| | * | | | | | | Add test for #44953Virgil Palanciuc2017-11-212-0/+39
| | |/ / / / / /
* | | | | | | | Auto merge of #45881 - Centril:box-leak, r=alexcrichtonbors2017-11-231-0/+53
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Box::leak: update unstable issue number (46179).Mazdak2017-11-221-1/+1
| * | | | | | | Box::leak - made an oops, fixed now =)Mazdak2017-11-091-1/+4
| * | | | | | | Box::leak - updated documentationMazdak2017-11-091-2/+2
| * | | | | | | Box::leak - relaxed constraints wrt. lifetimesMazdak2017-11-091-2/+2
| * | | | | | | Box::leak - fixed bug in documentationMazdak2017-11-091-8/+16
| * | | | | | | Box::leak - improve documentationMazdak2017-11-081-5/+6
| * | | | | | | added associated function Box::leakMazdak2017-11-081-0/+41
* | | | | | | | Auto merge of #46087 - vramana:fix-46003, r=arielb1bors2017-11-232-13/+59
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix borrowck compiler errors for upvars contain "spurious" dereferencesRamana Venkata2017-11-232-13/+59
* | | | | | | | | Auto merge of #46054 - nikomatsakis:nll-master-to-rust-master-1, r=arielb1bors2017-11-239-37/+169
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
| * | | | | | | | normalize types in ADT constructorNiko Matsakis2017-11-223-32/+12
| * | | | | | | | handle the active field index in unionsNiko Matsakis2017-11-222-10/+16
| * | | | | | | | avoid early returnNiko Matsakis2017-11-221-21/+18
| * | | | | | | | only normalize operand types when in an ADT constructorNiko Matsakis2017-11-222-4/+25
| * | | | | | | | Normalize LvalueTy for ops and format code to satisfy tidy checkPaul Daniel Faria2017-11-221-24/+39
| * | | | | | | | Remove attributes and test comments accidentally left behind, add in span_mir...Paul Daniel Faria2017-11-222-11/+20
| * | | | | | | | Fix failing testPaul Daniel Faria2017-11-221-3/+9
| * | | | | | | | Check rvalue aggregates during check_stmt in tycheck, add initial, (not passi...Paul Daniel Faria2017-11-222-0/+109
| * | | | | | | | Make RegionVid use newtype_index!Santiago Pastorino2017-11-225-32/+21
* | | | | | | | | Auto merge of #46051 - cramertj:in-band-lifetimes, r=nikomatsakisbors2017-11-2335-140/+1088
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | add some tests for the interaction with existential impl traitNiko Matsakis2017-11-221-1/+21
| * | | | | | | | | modify inherent impls test to indicate `TypeckTables` do not changeNiko Matsakis2017-11-221-4/+40
| * | | | | | | | | add debug log with result of writebackNiko Matsakis2017-11-221-0/+2
| * | | | | | | | | Implement in-band lifetime bindingsTaylor Cramer2017-11-2233-136/+1026
* | | | | | | | | | Auto merge of #46024 - estebank:no-variant, r=petrochenkovbors2017-11-2319-39/+170
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Add test to new branchesEsteban Küber2017-11-221-0/+15
| * | | | | | | | | | Use local spans onlyEsteban Küber2017-11-1610-185/+100
| * | | | | | | | | | Point to ADT definition when not finding variant, method, assoc typeEsteban Küber2017-11-1519-104/+285