summaryrefslogtreecommitdiff
path: root/authenc.h
diff options
context:
space:
mode:
authorMarcel Raad <MarcelRaad@users.noreply.github.com>2019-01-02 18:05:26 +0100
committerJeffrey Walton <noloader@gmail.com>2019-01-02 12:05:26 -0500
commit1a4b851ac170b16c9d07c73d387386a6883d938c (patch)
treed4c73898bc0f767c868c32b756f71a060dd004ab /authenc.h
parentda2444d243ddcc211a0107740faae7401c3de773 (diff)
downloadcryptopp-git-1a4b851ac170b16c9d07c73d387386a6883d938c.tar.gz
Fix clang warnings (GH #771)
Diffstat (limited to 'authenc.h')
-rw-r--r--authenc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/authenc.h b/authenc.h
index 236ff21d..980de0b4 100644
--- a/authenc.h
+++ b/authenc.h
@@ -60,7 +60,7 @@ protected:
void AuthenticateData(const byte *data, size_t len);
const SymmetricCipher & GetSymmetricCipher() const
- {return const_cast<AuthenticatedSymmetricCipherBase *>(this)->AccessSymmetricCipher();};
+ {return const_cast<AuthenticatedSymmetricCipherBase *>(this)->AccessSymmetricCipher();}
virtual SymmetricCipher & AccessSymmetricCipher() =0;
virtual bool AuthenticationIsOnPlaintext() const =0;