summaryrefslogtreecommitdiff
path: root/whrlpool.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-07 06:16:46 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-07 06:16:46 -0400
commitc1556295e60e435883c6976aeaf1a2be6606c738 (patch)
tree3bc407f76bf4f371bb764bb4abaec1aa75a650a6 /whrlpool.h
parent6e324c161f9fdb360cdf85efc6693e64ce8686bc (diff)
downloadcryptopp-git-c1556295e60e435883c6976aeaf1a2be6606c738.tar.gz
Add constexpr-ness to StaticAlgorithmName member function
Diffstat (limited to 'whrlpool.h')
-rw-r--r--whrlpool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/whrlpool.h b/whrlpool.h
index 68b43204..58dbf22d 100644
--- a/whrlpool.h
+++ b/whrlpool.h
@@ -13,7 +13,7 @@ public:
static void InitState(HashWordType *state);
static void Transform(word64 *digest, const word64 *data);
void TruncatedFinal(byte *hash, size_t size);
- static const char * StaticAlgorithmName() {return "Whirlpool";}
+ CRYPTOPP_CONSTEXPR static const char *StaticAlgorithmName() {return "Whirlpool";}
};
NAMESPACE_END