From 35a2ef10a23a9b668428c931f408a4a8154adbc9 Mon Sep 17 00:00:00 2001 From: Ralph Tandetzky Date: Thu, 1 Dec 2016 15:37:04 +0100 Subject: Fix: GCC warning "type qualifiers ignored on function return type". This pedantic message appeared all over the code. Also removed one warning about an unused variable in release build. --- salsa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'salsa.h') diff --git a/salsa.h b/salsa.h index 9a55fda2..bb7a5ca7 100644 --- a/salsa.h +++ b/salsa.h @@ -22,7 +22,7 @@ NAMESPACE_BEGIN(CryptoPP) //! \brief Salsa20 stream cipher information struct Salsa20_Info : public VariableKeyLength<32, 16, 32, 16, SimpleKeyingInterface::UNIQUE_IV, 8> { - CRYPTOPP_STATIC_CONSTEXPR char* const StaticAlgorithmName() {return "Salsa20";} + CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "Salsa20";} }; //! \class Salsa20_Policy @@ -58,7 +58,7 @@ struct Salsa20 : public Salsa20_Info, public SymmetricCipherDocumentation //! \brief XSalsa20 stream cipher information struct XSalsa20_Info : public FixedKeyLength<32, SimpleKeyingInterface::UNIQUE_IV, 24> { - CRYPTOPP_STATIC_CONSTEXPR char* const StaticAlgorithmName() {return "XSalsa20";} + CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "XSalsa20";} }; //! \class XSalsa20_Policy -- cgit v1.2.1