1
Fork 0

run rustfmt on librustc_errors folder

This commit is contained in:
Srinivas Reddy Thatiparthy 2016-10-18 23:13:02 +05:30
parent 16eeeac783
commit b260617345
No known key found for this signature in database
GPG key ID: 091C58F4BFC36571
6 changed files with 172 additions and 180 deletions

View file

@ -13,12 +13,12 @@
use syntax_pos::{Span, FileMap};
use CodeMapper;
use std::rc::Rc;
use {Level};
use Level;
#[derive(Clone)]
pub struct SnippetData {
codemap: Rc<CodeMapper>,
files: Vec<FileInfo>
files: Vec<FileInfo>,
}
#[derive(Clone)]
@ -84,4 +84,4 @@ pub enum Style {
NoStyle,
ErrorCode,
Level(Level),
}
}