summaryrefslogtreecommitdiff
path: root/base32.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-10 18:20:49 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-10 18:20:49 -0400
commit2d8992a54790da53ac2a7c8c8e0d82bc272b7d71 (patch)
treebb4c81cf3bad8453a1fd7ced742a1aa24cfb8c16 /base32.cpp
parent145a83e4cd12871f573920acee8184346f7dcd74 (diff)
downloadcryptopp-git-2d8992a54790da53ac2a7c8c8e0d82bc272b7d71.tar.gz
Add statics to anonymous namespace
Diffstat (limited to 'base32.cpp')
-rw-r--r--base32.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/base32.cpp b/base32.cpp
index 3c7e6ee9..6444caba 100644
--- a/base32.cpp
+++ b/base32.cpp
@@ -5,8 +5,11 @@
NAMESPACE_BEGIN(CryptoPP)
-static const byte s_vecUpper[] = "ABCDEFGHIJKMNPQRSTUVWXYZ23456789";
-static const byte s_vecLower[] = "abcdefghijkmnpqrstuvwxyz23456789";
+namespace
+{
+ const byte s_vecUpper[] = "ABCDEFGHIJKMNPQRSTUVWXYZ23456789";
+ const byte s_vecLower[] = "abcdefghijkmnpqrstuvwxyz23456789";
+}
void Base32Encoder::IsolatedInitialize(const NameValuePairs &parameters)
{