diff options
author | lloyd <[email protected]> | 2011-04-18 18:35:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-18 18:35:38 +0000 |
commit | c4bedb32c0547e8f6b67ece566050073726120f5 (patch) | |
tree | 17183000888bda5156637360d10d9901ced3565b /src/hash/sha2_32 | |
parent | 06a32c91e639cc2b0c636553a8aa395aa90d4d37 (diff) |
Maintainer mode warning cleanups, mostly for C style casts which I
added to the flags here.
Diffstat (limited to 'src/hash/sha2_32')
-rw-r--r-- | src/hash/sha2_32/sha2_32.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hash/sha2_32/sha2_32.cpp b/src/hash/sha2_32/sha2_32.cpp index 475ec8aee..6dd780e64 100644 --- a/src/hash/sha2_32/sha2_32.cpp +++ b/src/hash/sha2_32/sha2_32.cpp @@ -12,6 +12,8 @@ namespace Botan { +namespace { + namespace SHA2_32 { /* @@ -154,6 +156,8 @@ void compress(MemoryRegion<u32bit>& digest, } +} + /* * SHA-224 compression function */ |