automated whitespace fixes

This commit is contained in:
Daniel Micay 2013-06-13 17:59:34 -04:00
parent 541c657a73
commit ec27644870
24 changed files with 8 additions and 30 deletions

View file

@ -20,4 +20,3 @@ use std::libc;
extern {
pub fn rust_get_argc() -> libc::c_int;
}

View file

@ -2,4 +2,3 @@ pub enum Foo {
pub Bar,
priv Baz,
}

View file

@ -7,4 +7,3 @@ struct Foo;
impl Foo {
pub fn new() {}
}

View file

@ -44,4 +44,3 @@ mod issue6935 {
}
fn main(){}

View file

@ -6,4 +6,3 @@ pub fn main() {
let _ = private_variant_xc::Bar;
let _ = private_variant_xc::Baz; //~ ERROR unresolved name
}

View file

@ -9,4 +9,3 @@ use use_from_trait_xc::Foo::new; //~ ERROR cannot import from a trait or type
fn main() {
}

View file

@ -14,4 +14,3 @@ impl Foo {
}
fn main() {}

View file

@ -11,4 +11,3 @@ struct Bar {
static bar: Bar = Bar { i: 0, v: IntVal(0) };
fn main() {}

View file

@ -26,5 +26,3 @@ fn main() {
let p = unsafe { transmute::<~int, *c_void>(t) };
let z = NonCopyable(p);
}

View file

@ -24,8 +24,8 @@ struct A((u32, u32));
struct B(u64);
pub fn main() {
static Ca: S<A> = S { i: 0, t: A((13, 104)) };
static Cb: S<B> = S { i: 0, t: B(31337) };
assert_eq!(*(Ca.unwrap()), (13, 104));
assert_eq!(*(Cb.unwrap()), 31337);
static Ca: S<A> = S { i: 0, t: A((13, 104)) };
static Cb: S<B> = S { i: 0, t: B(31337) };
assert_eq!(*(Ca.unwrap()), (13, 104));
assert_eq!(*(Cb.unwrap()), 31337);
}

View file

@ -13,4 +13,3 @@ pub fn main() {
let y = x;
assert!((y == 10));
}

View file

@ -11,4 +11,3 @@ fn main() {
a::free(transmute(0));
}
}