summaryrefslogtreecommitdiff
path: root/serpent.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 /serpent.h
parent6e324c161f9fdb360cdf85efc6693e64ce8686bc (diff)
downloadcryptopp-git-c1556295e60e435883c6976aeaf1a2be6606c738.tar.gz
Add constexpr-ness to StaticAlgorithmName member function
Diffstat (limited to 'serpent.h')
-rw-r--r--serpent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/serpent.h b/serpent.h
index 888d70af..501ef0a9 100644
--- a/serpent.h
+++ b/serpent.h
@@ -15,7 +15,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \brief Serpent block cipher information
struct Serpent_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public FixedRounds<32>
{
- static const char *StaticAlgorithmName() {return "Serpent";}
+ CRYPTOPP_CONSTEXPR static const char *StaticAlgorithmName() {return "Serpent";}
};
//! \class Serpent