Created
September 18, 2018 23:05
-
-
Save durka/ef51a30adbf962cf4e2d1c6d0879b92c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
macro_rules! group_attr { | |
(#[cfg($attr:meta)] $($yes:item)*) => { | |
$(#[cfg($attr)] $yes)* | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment