Upgrade to latest Rust

This commit is contained in:
Sven Nilsen
2014-06-21 20:56:29 +02:00
parent 05b5d66d7d
commit 8f7fd7540c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ pub fn generate_branchified_method(
let s = format!($($x)*);
let result = writer.write(indentstr.as_bytes())
.and(writer.write(s.as_bytes()))
.and(writer.write(bytes!("\n")));
.and(writer.write(b"\n"));
match result {
Ok(_) => {},
+1
View File
@@ -6,6 +6,7 @@
#![feature(globs)]
#![feature(macro_rules)]
#![feature(unsafe_destructor)]
extern crate libc;
extern crate collections;