aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorLakelezz <[email protected]>2018-03-15 23:03:56 +0100
committeralex <[email protected]>2018-03-15 23:03:56 +0100
commit02dc5064d9402f73ef514c9b8ffa318f5d4235ff (patch)
tree696b9746abfb532d689ccaadfecea2aefe53d7c9 /src/client
parentAdd a basic CONTRIBUTING.md (diff)
downloadserenity-02dc5064d9402f73ef514c9b8ffa318f5d4235ff.tar.xz
serenity-02dc5064d9402f73ef514c9b8ffa318f5d4235ff.zip
Fix no-cache standardframework compilation (#290)
Diffstat (limited to 'src/client')
-rw-r--r--src/client/dispatch.rs2
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)
}