diff options
| author | acdenisSK <[email protected]> | 2017-07-27 06:42:48 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-27 07:30:23 +0200 |
| commit | 550030264952f0e0043b63f4582bb817ef8bbf37 (patch) | |
| tree | b921e2f78fd603a5ca671623083a32806fd16090 /src/internal/macros.rs | |
| parent | Use a consistent indentation style (diff) | |
| download | serenity-550030264952f0e0043b63f4582bb817ef8bbf37.tar.xz serenity-550030264952f0e0043b63f4582bb817ef8bbf37.zip | |
rustfmt
Diffstat (limited to 'src/internal/macros.rs')
| -rw-r--r-- | src/internal/macros.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/internal/macros.rs b/src/internal/macros.rs index c2475d1..7672316 100644 --- a/src/internal/macros.rs +++ b/src/internal/macros.rs @@ -66,7 +66,7 @@ macro_rules! status { } // Enable/disable check for cache -#[cfg(feature="cache")] +#[cfg(feature = "cache")] macro_rules! feature_cache { ($enabled:block else $disabled:block) => { { @@ -75,7 +75,7 @@ macro_rules! feature_cache { } } -#[cfg(not(feature="cache"))] +#[cfg(not(feature = "cache"))] macro_rules! feature_cache { ($enabled:block else $disabled:block) => { { @@ -85,7 +85,7 @@ macro_rules! feature_cache { } // Enable/disable check for framework -#[cfg(feature="framework")] +#[cfg(feature = "framework")] macro_rules! feature_framework { ($enabled:block else $disabled:block) => { { @@ -94,7 +94,7 @@ macro_rules! feature_framework { } } -#[cfg(not(feature="framework"))] +#[cfg(not(feature = "framework"))] macro_rules! feature_framework { ($enabled:block else $disabled:block) => { { @@ -104,7 +104,7 @@ macro_rules! feature_framework { } // Enable/disable check for voice -#[cfg(feature="voice")] +#[cfg(feature = "voice")] macro_rules! feature_voice { ($enabled:block else $disabled:block) => { { @@ -113,7 +113,7 @@ macro_rules! feature_voice { } } -#[cfg(not(feature="voice"))] +#[cfg(not(feature = "voice"))] macro_rules! feature_voice { ($enabled:block else $disabled:block) => { { |