summaryrefslogtreecommitdiff
path: root/ccm.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 /ccm.h
parentda2444d243ddcc211a0107740faae7401c3de773 (diff)
downloadcryptopp-git-1a4b851ac170b16c9d07c73d387386a6883d938c.tar.gz
Fix clang warnings (GH #771)
Diffstat (limited to 'ccm.h')
-rw-r--r--ccm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccm.h b/ccm.h
index c63c98b8..5207a2fd 100644
--- a/ccm.h
+++ b/ccm.h
@@ -73,7 +73,7 @@ protected:
virtual BlockCipher & AccessBlockCipher() =0;
virtual int DefaultDigestSize() const =0;
- const BlockCipher & GetBlockCipher() const {return const_cast<CCM_Base *>(this)->AccessBlockCipher();};
+ const BlockCipher & GetBlockCipher() const {return const_cast<CCM_Base *>(this)->AccessBlockCipher();}
byte *CBC_Buffer() {return m_buffer+REQUIRED_BLOCKSIZE;}
enum {REQUIRED_BLOCKSIZE = 16};