Skip to content

Commit

Permalink
fix indentation of session/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed May 18, 2016
1 parent eaafe45 commit 4d3ef6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustc/session/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -628,9 +628,9 @@ pub fn span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
}

fn opt_span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
line: u32,
span: Option<S>,
args: fmt::Arguments) -> ! {
line: u32,
span: Option<S>,
args: fmt::Arguments) -> ! {
tls::with_opt(move |tcx| {
let msg = format!("{}:{}: {}", file, line, args);
match (tcx, span) {
Expand Down

0 comments on commit 4d3ef6b

Please sign in to comment.