aerospike / aerospike-client-rust

Rust client for the Aerospike database
https://www.aerospike.com/
Other
82 stars 29 forks source link

Macro rule should be replaced after updating to 1.42.0 #73

Closed jacklberk closed 1 year ago

jacklberk commented 4 years ago

In tests/src/task.rs1

#[macro_export]
macro_rules! matches_override {
    ($expression:expr, $($pattern:tt)+) => {
        match $expression {
            $($pattern)+ => true,
            _ => false
        }
    }
}

Should be replaced with default match macro https://doc.rust-lang.org/beta/std/macro.matches.html

khaf commented 1 year ago

Closing as done.

khaf commented 1 year ago

Fix already released long ago.