From e5346dfa1ab428cd05c8a3b70b17ca1f854008f6 Mon Sep 17 00:00:00 2001 From: Kyle Bostelmann Date: Tue, 7 Nov 2017 21:25:56 -0400 Subject: [PATCH] fix(base): parameterless ice! macro. --- base/src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/macros.rs b/base/src/macros.rs index 80305fae1d..220ebd423a 100644 --- a/base/src/macros.rs +++ b/base/src/macros.rs @@ -2,7 +2,7 @@ #[macro_export] macro_rules! ice { () => ({ - ice!("ICE: Please report an issue at https://github.com/gluon-lang/gluon/issues") + panic!("ICE: Please report an issue at https://github.com/gluon-lang/gluon/issues") }); ($msg:expr) => ({ panic!(concat!($msg, ". Please report an issue at https://github.com/gluon-lang/gluon/issues"))