Skip to content

automated whitespace fixes #7116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Version 0.7 (July 2013)
* ??? changes, numerous bugfixes

* Syntax changes
* `#[deriving(Encodable)]`, `#[deriving(Decodable)]`
* `#[deriving(Encodable)]`, `#[deriving(Decodable)]`

* Semantic changes
* The `self` parameter no longer implicitly means `&'self self`,
Expand Down
6 changes: 3 additions & 3 deletions src/etc/adb_run_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# usage : adb_run_wrapper [test dir - where test executables exist] [test executable]
#

# Sometimes android shell produce exitcode "1 : Text File Busy"
# Sometimes android shell produce exitcode "1 : Text File Busy"
# Retry after $WAIT seconds, expecting resource cleaned-up
WAIT=10
PATH=$1
Expand All @@ -20,15 +20,15 @@ then
while [ $L_RET -eq 1 ]
do
LD_LIBRARY_PATH=$PATH $PATH/$RUN $@ 1>$PATH/$RUN.stdout 2>$PATH/$RUN.stderr
L_RET=$?
L_RET=$?
if [ $L_COUNT -gt 0 ]
then
/system/bin/sleep $WAIT
/system/bin/sync
fi
L_COUNT=`expr $L_COUNT+1`
done

echo $L_RET > $PATH/$RUN.exitcode

fi
Expand Down
1 change: 0 additions & 1 deletion src/librustc/middle/borrowck/gather_loans/gather_moves.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,3 @@ fn check_is_legal_to_move_from(bccx: @BorrowckCtxt,
}
}
}

1 change: 0 additions & 1 deletion src/librustc/middle/effect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,3 @@ pub fn check_crate(tcx: ty::ctxt,

visit::visit_crate(crate, ((), visitor))
}

1 change: 0 additions & 1 deletion src/libstd/core.rc
Original file line number Diff line number Diff line change
Expand Up @@ -232,4 +232,3 @@ mod std {
pub use str;
pub use os;
}

1 change: 0 additions & 1 deletion src/libstd/rt/comm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,4 +615,3 @@ mod test {
}
}
}

1 change: 0 additions & 1 deletion src/libstd/rt/io/stdio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ impl Writer for StdWriter {

fn flush(&mut self) { fail!() }
}

1 change: 0 additions & 1 deletion src/libstd/rt/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,4 +228,3 @@ mod test {
}
}
}

1 change: 0 additions & 1 deletion src/libstd/rt/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,3 @@ pub fn stress_factor() -> uint {
None => 1
}
}

1 change: 0 additions & 1 deletion src/libsyntax/ext/pipes/ast_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,3 @@ impl append_types for @ast::Path {
}
}
}

1 change: 0 additions & 1 deletion src/rt/rust_env.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,3 @@ free_env(rust_env *env) {
free(env->rust_seed);
free(env);
}

1 change: 0 additions & 1 deletion src/rustllvm/rustllvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@
#include <fcntl.h>
#include <unistd.h>
#endif

1 change: 0 additions & 1 deletion src/test/auxiliary/anon-extern-mod-cross-crate-1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ use std::libc;
extern {
pub fn rust_get_argc() -> libc::c_int;
}

1 change: 0 additions & 1 deletion src/test/auxiliary/private_variant_xc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ pub enum Foo {
pub Bar,
priv Baz,
}

1 change: 0 additions & 1 deletion src/test/auxiliary/use_from_trait_xc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ struct Foo;
impl Foo {
pub fn new() {}
}

1 change: 0 additions & 1 deletion src/test/compile-fail/lint-unused-import-tricky-names.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ mod issue6935 {
}

fn main(){}

1 change: 0 additions & 1 deletion src/test/compile-fail/private-variant-xc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ pub fn main() {
let _ = private_variant_xc::Bar;
let _ = private_variant_xc::Baz; //~ ERROR unresolved name
}

1 change: 0 additions & 1 deletion src/test/compile-fail/use-from-trait-xc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ use use_from_trait_xc::Foo::new; //~ ERROR cannot import from a trait or type

fn main() {
}

1 change: 0 additions & 1 deletion src/test/compile-fail/use-from-trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ impl Foo {
}

fn main() {}

1 change: 0 additions & 1 deletion src/test/run-pass/const-struct-offsets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ struct Bar {
static bar: Bar = Bar { i: 0, v: IntVal(0) };

fn main() {}

2 changes: 0 additions & 2 deletions src/test/run-pass/issue-4735.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,3 @@ fn main() {
let p = unsafe { transmute::<~int, *c_void>(t) };
let z = NonCopyable(p);
}


8 changes: 4 additions & 4 deletions src/test/run-pass/monomorphize-abi-alignment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
1 change: 0 additions & 1 deletion src/test/run-pass/multi-let.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ pub fn main() {
let y = x;
assert!((y == 10));
}

1 change: 0 additions & 1 deletion src/test/run-pass/pub-extern-privacy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ fn main() {
a::free(transmute(0));
}
}