<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/pretty/vec-comments.pp, branch 1.23.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.23.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.23.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-01-30T03:38:54+00:00</updated>
<entry>
<title>Remove all `i` suffixes</title>
<updated>2015-01-30T03:38:54+00:00</updated>
<author>
<name>Tobias Bucher</name>
<email>tobiasbucher5991@gmail.com</email>
</author>
<published>2015-01-25T21:05:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7f64fe4e27555c256cb228feb05d4181a2287125'/>
<id>urn:sha1:7f64fe4e27555c256cb228feb05d4181a2287125</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Remove the fallback to `int` for integers and `f64` for</title>
<updated>2014-06-29T18:47:58+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2014-06-27T19:30:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a5bb0a3a4574af88add700ace7aefc37172fa7a5'/>
<id>urn:sha1:a5bb0a3a4574af88add700ace7aefc37172fa7a5</id>
<content type='text'>
floating point numbers for real.

This will break code that looks like:

    let mut x = 0;
    while ... {
        x += 1;
    }
    println!("{}", x);

Change that code to:

    let mut x = 0i;
    while ... {
        x += 1;
    }
    println!("{}", x);

Closes #15201.

[breaking-change]
</content>
</entry>
<entry>
<title>test: Make manual changes to deal with the fallout from removal of</title>
<updated>2014-03-21T12:37:21+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2014-03-05T23:28:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=af79a5aa7da4f42fc0939a19f46fa73b894d6e9a'/>
<id>urn:sha1:af79a5aa7da4f42fc0939a19f46fa73b894d6e9a</id>
<content type='text'>
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
</content>
</entry>
<entry>
<title>Fix warnings it tests</title>
<updated>2013-08-17T15:42:35+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-08-17T15:37:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ad5c67685332dc0e45d459b45749e76c93270988'/>
<id>urn:sha1:ad5c67685332dc0e45d459b45749e76c93270988</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: relicense .pp files. Oddly not caught during local testing.</title>
<updated>2012-12-11T02:15:39+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2012-12-11T02:15:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ed686aeac4c717a85175a0f3b63d3ff50c2f50a7'/>
<id>urn:sha1:ed686aeac4c717a85175a0f3b63d3ff50c2f50a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Pretty print vectors as ~[] instead of []/~. Closes #2863.</title>
<updated>2012-07-10T20:55:19+00:00</updated>
<author>
<name>Michael Sullivan</name>
<email>sully@msully.net</email>
</author>
<published>2012-07-10T20:55:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0070527383930adbeb02cfa30499381e5c5a235d'/>
<id>urn:sha1:0070527383930adbeb02cfa30499381e5c5a235d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.</title>
<updated>2012-06-26T03:00:46+00:00</updated>
<author>
<name>Michael Sullivan</name>
<email>sully@msully.net</email>
</author>
<published>2012-06-26T03:00:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=329eca6044fdf376a7a89ec7a96dba7a8b884cf7'/>
<id>urn:sha1:329eca6044fdf376a7a89ec7a96dba7a8b884cf7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Pretty-print ivecs as []</title>
<updated>2011-08-18T20:09:00+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2011-08-17T23:20:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=53eb4a30255fc6b3d6be700c10eb7248b0bad3a9'/>
<id>urn:sha1:53eb4a30255fc6b3d6be700c10eb7248b0bad3a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add pp test for interleaving comments through vectors. Closes #679</title>
<updated>2011-08-16T18:39:04+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2011-08-16T18:37:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2f61848b24bcb04f4eee3bd16851d3e654d66e20'/>
<id>urn:sha1:2f61848b24bcb04f4eee3bd16851d3e654d66e20</id>
<content type='text'>
</content>
</entry>
</feed>
