<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/liballoc/macros.rs, branch try-perf</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try-perf</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try-perf'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2020-07-28T00:51:13+00:00</updated>
<entry>
<title>mv std libs to library/</title>
<updated>2020-07-28T00:51:13+00:00</updated>
<author>
<name>mark</name>
<email>markm@cs.wisc.edu</email>
</author>
<published>2020-06-12T02:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2c31b45ae878b821975c4ebd94cc1e49f6073fd0'/>
<id>urn:sha1:2c31b45ae878b821975c4ebd94cc1e49f6073fd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make `vec![,]` uncompilable</title>
<updated>2020-04-14T07:27:55+00:00</updated>
<author>
<name>Waffle</name>
<email>waffle.lapkin@gmail.com</email>
</author>
<published>2020-04-14T07:27:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2c23bd491445c56d2f5e8b22df572dbf9944ee62'/>
<id>urn:sha1:2c23bd491445c56d2f5e8b22df572dbf9944ee62</id>
<content type='text'>
Fix regression introduced in commit #3ae2d21
</content>
</entry>
<entry>
<title>simplify `vec!` macro</title>
<updated>2020-04-09T08:03:57+00:00</updated>
<author>
<name>Waffle</name>
<email>waffle.lapkin@gmail.com</email>
</author>
<published>2020-04-09T08:03:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3ae2d21c12a1fbe909f72a96b012d7092c5419e4'/>
<id>urn:sha1:3ae2d21c12a1fbe909f72a96b012d7092c5419e4</id>
<content type='text'>
Simplify `vec!` macro by replacing 2 following branches:
- `($($x:expr),*) =&gt; (...)`
- `($($x:expr,)*) =&gt; (...)`
with one:
- `($($x:expr),* $(,)?) =&gt; (...)`
</content>
</entry>
<entry>
<title>expand vec![] to Vec::new()</title>
<updated>2020-03-31T19:37:13+00:00</updated>
<author>
<name>Trevor Spiteri</name>
<email>tspiteri@ieee.org</email>
</author>
<published>2020-03-31T19:37:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4d8273dea5d2f398c473dd4a9c8a178dadc5be4c'/>
<id>urn:sha1:4d8273dea5d2f398c473dd4a9c8a178dadc5be4c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Scope format! temporaries</title>
<updated>2019-09-27T21:36:45+00:00</updated>
<author>
<name>Jon Gjengset</name>
<email>jon@thesquareplanet.com</email>
</author>
<published>2019-09-27T21:15:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=06e4ff4d61f44d7e239e02256829ecf1e5598657'/>
<id>urn:sha1:06e4ff4d61f44d7e239e02256829ecf1e5598657</id>
<content type='text'>
This places the temporaries that `format!` generates to refer to its
arguments (through `&amp;dyn Trait`) in a short-lived scope surrounding just
the invocation of `format!`. This enables `format!` to be used in
generators without the temporaries preventing the generator from being
`Send` (due to `dyn Trait` not being `Sync`).

See rust-lang/rust#64477 for details.
</content>
</entry>
<entry>
<title>Improve hygiene of `alloc::format!`</title>
<updated>2019-09-07T19:40:57+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-09-01T11:10:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d42e60331fb08efce78e7fc9739bf42620e51f8f'/>
<id>urn:sha1:d42e60331fb08efce78e7fc9739bf42620e51f8f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Hygienize use of built-in macros in the standard library</title>
<updated>2019-08-15T19:58:50+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-08-15T18:23:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a9ecfd729507d19946f0b66c78cebca1e23e9a15'/>
<id>urn:sha1:a9ecfd729507d19946f0b66c78cebca1e23e9a15</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Hygienize macros in the standard library</title>
<updated>2019-06-12T17:27:29+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-06-07T15:29:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=eb09daa762c37c743584ec3b5c05a2d181960ced'/>
<id>urn:sha1:eb09daa762c37c743584ec3b5c05a2d181960ced</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bootstrap compiler update for 1.35 release</title>
<updated>2019-03-02T16:05:34+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2019-02-27T23:58:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2870015b7b7a52a23db0b68fde8b830706061fd0'/>
<id>urn:sha1:2870015b7b7a52a23db0b68fde8b830706061fd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik</title>
<updated>2019-02-12T19:09:24+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2019-02-12T19:09:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b244f61b77c42d7be695afd7901ee4418559e518'/>
<id>urn:sha1:b244f61b77c42d7be695afd7901ee4418559e518</id>
<content type='text'>
Cosmetic improvements to doc comments

This has been factored out from https://github.com/rust-lang/rust/pull/58036 to only include changes to documentation comments (throughout the rustc codebase).

r? @steveklabnik

Once you're happy with this, maybe we could get it through with r=1, so it doesn't constantly get invalidated? (I'm not sure this will be an issue, but just in case...) Anyway, thanks for your advice so far!
</content>
</entry>
</feed>
