Version bump the syntex stack

This commit is contained in:
Erick Tryzelaar
2016-06-22 20:19:47 -07:00
parent c9e2e518ba
commit 5941f1d071
5 changed files with 16 additions and 18 deletions
+1 -3
View File
@@ -23,8 +23,6 @@ extern crate syntax;
#[cfg(not(feature = "with-syntex"))]
extern crate rustc_plugin;
#[cfg(feature = "with-syntex")]
use std::io;
#[cfg(feature = "with-syntex")]
use std::path::Path;
@@ -38,7 +36,7 @@ include!(concat!(env!("OUT_DIR"), "/lib.rs"));
include!("lib.rs.in");
#[cfg(feature = "with-syntex")]
pub fn expand<S, D>(src: S, dst: D) -> io::Result<()>
pub fn expand<S, D>(src: S, dst: D) -> Result<(), syntex::Error>
where S: AsRef<Path>,
D: AsRef<Path>,
{