Skip to content

Commit 2dfc0f3

Browse files
committed
---
yaml --- r: 125964 b: refs/heads/try c: f49f157 h: refs/heads/master v: v3
1 parent cffebc4 commit 2dfc0f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: f2fa55903e378368ed9173560f03a0ef16e371c2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 9fc8394d3bce22ab483f98842434c84c396212ae
5-
refs/heads/try: 53f0eae3866f5b4708e9f34b009df843f91136d7
5+
refs/heads/try: f49f1575aa83a20e6cf9cb79b36d0bf02f2b28d5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libcore/macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ macro_rules! fail(
3333
// up with the number of calls to fail!()
3434
#[inline(always)]
3535
fn run_fmt(fmt: &::std::fmt::Arguments) -> ! {
36-
static file_line: (&'static str, uint) = (file!(), line!());
37-
::core::failure::begin_unwind(fmt, &file_line)
36+
static FILE_LINE: (&'static str, uint) = (file!(), line!());
37+
::core::failure::begin_unwind(fmt, &FILE_LINE)
3838
}
3939
format_args!(run_fmt, $fmt, $($arg)*)
4040
});

0 commit comments

Comments
 (0)