<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/run-pass/struct-like-variant-construct.rs, branch 1.22.1</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.22.1</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.22.1'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-03-26T19:10:22+00:00</updated>
<entry>
<title>Mass rename uint/int to usize/isize</title>
<updated>2015-03-26T19:10:22+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-03-26T00:06:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=43bfaa4a336095eb5697fb2df50909fd3c72ed14'/>
<id>urn:sha1:43bfaa4a336095eb5697fb2df50909fd3c72ed14</id>
<content type='text'>
Now that support has been removed, all lingering use cases are renamed.
</content>
</entry>
<entry>
<title>rustdoc: Replace no-pretty-expanded with pretty-expanded</title>
<updated>2015-03-23T21:40:26+00:00</updated>
<author>
<name>Brian Anderson</name>
<email>banderson@mozilla.com</email>
</author>
<published>2015-03-22T20:13:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a'/>
<id>urn:sha1:8c93a79e387f5197e8b8fe73b3d87d2b101b7c4a</id>
<content type='text'>
Now that features must be declared expanded source often does not compile.
This adds 'pretty-expanded' to a bunch of test cases that still work.
</content>
</entry>
<entry>
<title>removed struct_variant feature from tests</title>
<updated>2014-11-19T23:56:50+00:00</updated>
<author>
<name>Simon Wollwage</name>
<email>mail.wollwage@gmail.com</email>
</author>
<published>2014-11-19T23:56:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f950e3c495e191b99493b84bce0adc0ee857f23f'/>
<id>urn:sha1:f950e3c495e191b99493b84bce0adc0ee857f23f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Switch to purely namespaced enums</title>
<updated>2014-11-17T15:35:51+00:00</updated>
<author>
<name>Steven Fackler</name>
<email>sfackler@gmail.com</email>
</author>
<published>2014-11-06T08:05:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3dcd2157403163789aaf21a9ab3c4d30a7c6494d'/>
<id>urn:sha1:3dcd2157403163789aaf21a9ab3c4d30a7c6494d</id>
<content type='text'>
This breaks code that referred to variant names in the same namespace as
their enum. Reexport the variants in the old location or alter code to
refer to the new locations:

```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
=&gt;
```
pub use self::Foo::{A, B};

pub enum Foo {
    A,
    B
}

fn main() {
    let a = A;
}
```
or
```
pub enum Foo {
    A,
    B
}

fn main() {
    let a = Foo::A;
}
```

[breaking-change]
</content>
</entry>
<entry>
<title>Use new attribute syntax in python files in src/etc too (#13478)</title>
<updated>2014-04-14T15:30:31+00:00</updated>
<author>
<name>Manish Goregaokar</name>
<email>manishsmail@gmail.com</email>
</author>
<published>2014-04-14T15:30:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=713e87526eac42aa9879e7cfb556ea64d63e7a91'/>
<id>urn:sha1:713e87526eac42aa9879e7cfb556ea64d63e7a91</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add appropriate #[feature] directives to tests</title>
<updated>2013-10-06T21:39:25+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-10-03T03:00:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3396365cab2da7bb1e9b57932f4092bfa49d3787'/>
<id>urn:sha1:3396365cab2da7bb1e9b57932f4092bfa49d3787</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove the `float` type</title>
<updated>2013-10-01T18:54:10+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-09-26T06:26:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c9d4ad07c4c166d655f11862e03c10100dcb704b'/>
<id>urn:sha1:c9d4ad07c4c166d655f11862e03c10100dcb704b</id>
<content type='text'>
It is simply defined as `f64` across every platform right now.

A use case hasn't been presented for a `float` type defined as the
highest precision floating point type implemented in hardware on the
platform. Performance-wise, using the smallest precision correct for the
use case greatly saves on cache space and allows for fitting more
numbers into SSE/AVX registers.

If there was a use case, this could be implemented as simply a type
alias or a struct thanks to `#[cfg(...)]`.

Closes #6592

The mailing list thread, for reference:

https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html
</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>add gitattributes and fix whitespace issues</title>
<updated>2013-05-04T00:01:42+00:00</updated>
<author>
<name>Daniel Micay</name>
<email>danielmicay@gmail.com</email>
</author>
<published>2013-05-03T23:25:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=86efd97a10fda1f81f5bead0de36e3343a9faa0e'/>
<id>urn:sha1:86efd97a10fda1f81f5bead0de36e3343a9faa0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>check-fast fallout from removing export, r=burningtree</title>
<updated>2013-02-02T03:43:17+00:00</updated>
<author>
<name>Graydon Hoare</name>
<email>graydon@mozilla.com</email>
</author>
<published>2013-02-02T03:43:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=89c8ef792f7e7641abfac421ba1e8f90384883ec'/>
<id>urn:sha1:89c8ef792f7e7641abfac421ba1e8f90384883ec</id>
<content type='text'>
</content>
</entry>
</feed>
