diff options
| author | Lakelezz <[email protected]> | 2018-03-15 23:03:56 +0100 |
|---|---|---|
| committer | alex <[email protected]> | 2018-03-15 23:03:56 +0100 |
| commit | 02dc5064d9402f73ef514c9b8ffa318f5d4235ff (patch) | |
| tree | 696b9746abfb532d689ccaadfecea2aefe53d7c9 /src/client | |
| parent | Add a basic CONTRIBUTING.md (diff) | |
| download | serenity-02dc5064d9402f73ef514c9b8ffa318f5d4235ff.tar.xz serenity-02dc5064d9402f73ef514c9b8ffa318f5d4235ff.zip | |
Fix no-cache standardframework compilation (#290)
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/dispatch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/dispatch.rs b/src/client/dispatch.rs index bdd55d6..8a09c08 100644 --- a/src/client/dispatch.rs +++ b/src/client/dispatch.rs @@ -25,7 +25,7 @@ use super::CACHE; macro_rules! update { ($event:expr) => { { - #[cfg(feature="cache")] + #[cfg(feature = "cache")] { CACHE.write().update(&mut $event) } |