commit
0e04e8f258
2 changed files with 3 additions and 3 deletions
|
@ -22,8 +22,8 @@ cache:
|
|||
cargo: true
|
||||
|
||||
script:
|
||||
- |
|
||||
cargo build --all --verbose -j 1 && cargo test --all --verbose -j 1
|
||||
- cargo build --all --all-features --verbose -j 1
|
||||
- cargo test --all --all-features --verbose -j 1
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
|
|
@ -30,7 +30,7 @@ use error::StoreError as SE;
|
|||
macro_rules! if_cfg_panic {
|
||||
() => { panic!() };
|
||||
($msg:expr) => { panic!($msg) };
|
||||
($fmt:expr, $($arg:tt)+) => { panic!($fmt, $($($arg),*)) };
|
||||
($fmt:expr, $($arg:tt)+) => { panic!($fmt, $($arg),+) };
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "early-panic"))]
|
||||
|
|
Loading…
Reference in a new issue