summaryrefslogtreecommitdiff
path: root/gcm.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 /gcm.h
parentda2444d243ddcc211a0107740faae7401c3de773 (diff)
downloadcryptopp-git-1a4b851ac170b16c9d07c73d387386a6883d938c.tar.gz
Fix clang warnings (GH #771)
Diffstat (limited to 'gcm.h')
-rw-r--r--gcm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcm.h b/gcm.h
index db42aad5..a9302eec 100644
--- a/gcm.h
+++ b/gcm.h
@@ -80,7 +80,7 @@ protected:
virtual BlockCipher & AccessBlockCipher() =0;
virtual GCM_TablesOption GetTablesOption() const =0;
- const BlockCipher & GetBlockCipher() const {return const_cast<GCM_Base *>(this)->AccessBlockCipher();};
+ const BlockCipher & GetBlockCipher() const {return const_cast<GCM_Base *>(this)->AccessBlockCipher();}
byte *HashBuffer() {return m_buffer+REQUIRED_BLOCKSIZE;}
byte *HashKey() {return m_buffer+2*REQUIRED_BLOCKSIZE;}
byte *MulTable() {return m_buffer+3*REQUIRED_BLOCKSIZE;}