Fix assert_never invoking assert_always
This commit is contained in:
parent
f51457a643
commit
e23bfafb32
@ -66,7 +66,7 @@ fn from(it: $sub_variant) -> $enum {
|
||||
/// Shamelessly stolen from: https://www.sqlite.org/assert.html
|
||||
#[macro_export]
|
||||
macro_rules! assert_never {
|
||||
($cond:expr) => { $crate::assert_always!($cond, "") };
|
||||
($cond:expr) => { $crate::assert_never!($cond, "") };
|
||||
($cond:expr, $($fmt:tt)*) => {{
|
||||
let value = $cond;
|
||||
if value {
|
||||
|
Loading…
Reference in New Issue
Block a user