Add an ignore! macro, remove support for nested block comments, re: #2755.

This commit is contained in:
Graydon Hoare
2012-09-07 16:58:27 -07:00
parent 249668f223
commit e9f5a099df
6 changed files with 26 additions and 28 deletions

View File

@@ -235,13 +235,13 @@ impl<A: copy> DVec<A> {
}
}
/*
/**
* Append all elements of an iterable.
*
* Failure will occur if the iterable's `each()` method
* attempts to access this vector.
*/
/*
fn append_iter<A, I:iter::base_iter<A>>(ts: I) {
do self.swap |v| {
let mut v = match ts.size_hint() {