We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b340248 commit 50ae1b5Copy full SHA for 50ae1b5
.travis.yml
@@ -5,6 +5,7 @@ services:
5
- docker
6
language: rust
7
before_install:
8
+ - rustup component add rustfmt
9
- cargo fmt --all -- --check
10
install:
11
- curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
rust-toolchain
@@ -1 +1 @@
1
-nightly-2019-10-15
+nightly-2020-07-27
src/macros.rs
@@ -12,7 +12,7 @@ macro_rules! ok_or {
12
13
macro_rules! ok_or_continue {
14
($test: expr, $why: ident => $on_err: expr) => {
15
- ok_or!($test, $why => { $on_err; continue; })
+ ok_or!($test, $why => { $on_err; continue; });
16
};
17
}
18
0 commit comments