diff options
author | Teddy Wing | 2018-10-27 05:37:55 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-27 05:37:55 +0200 |
commit | 33b72564206fe75b4433a82432676f8e05ccfbb5 (patch) | |
tree | 476c7ee89d3751d72732e2456291b09c90b5775e | |
parent | b07c5f93636933810c54b4669e539b6f3013d149 (diff) | |
download | DomeKey-33b72564206fe75b4433a82432676f8e05ccfbb5.tar.bz2 |
Mappings: Make `const` `static`
Ensure it's scoped to this file.
-rw-r--r-- | DomeKey/Mappings.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DomeKey/Mappings.m b/DomeKey/Mappings.m index 1261601..43f182d 100644 --- a/DomeKey/Mappings.m +++ b/DomeKey/Mappings.m @@ -10,7 +10,7 @@ #define NOTIFICATION_NAME_RELOAD "com.teddywing.DomeKey.reload_mappings" -const CFStringRef CFNOTIFICATION_NAME_RELOAD = CFSTR(NOTIFICATION_NAME_RELOAD); +static const CFStringRef CFNOTIFICATION_NAME_RELOAD = CFSTR(NOTIFICATION_NAME_RELOAD); @implementation Mappings |