aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc6/rc6.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/rc6/rc6.h')
-rw-r--r--src/block/rc6/rc6.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/rc6/rc6.h b/src/block/rc6/rc6.h
index e30a267e6..4331c3e0f 100644
--- a/src/block/rc6/rc6.h
+++ b/src/block/rc6/rc6.h
@@ -21,7 +21,7 @@ class BOTAN_DLL RC6 : public Block_Cipher_Fixed_Params<16, 1, 32>
void encrypt_n(const byte in[], byte out[], size_t blocks) const;
void decrypt_n(const byte in[], byte out[], size_t blocks) const;
- void clear() { S.clear(); }
+ void clear();
std::string name() const { return "RC6"; }
BlockCipher* clone() const { return new RC6; }
private: