summaryrefslogtreecommitdiff
path: root/dmac.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2004-06-19 08:28:09 +0000
committerweidai <weidai11@users.noreply.github.com>2004-06-19 08:28:09 +0000
commitf78fccb3cc8c2375bd0b474a33c43b1cd22a325c (patch)
tree187e9abc73ba1918391e24a30eb0b9638f12941e /dmac.h
parent40a5b80a4522a9b3ad3820b5a953bb4f3611e009 (diff)
downloadcryptopp-git-f78fccb3cc8c2375bd0b474a33c43b1cd22a325c.tar.gz
port to GCC 3.4
Diffstat (limited to 'dmac.h')
-rw-r--r--dmac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmac.h b/dmac.h
index 521ba448..f10d34fd 100644
--- a/dmac.h
+++ b/dmac.h
@@ -40,7 +40,7 @@ class DMAC : public MessageAuthenticationCodeFinal<DMAC_Base<T> >
public:
DMAC() {}
DMAC(const byte *key, unsigned int length=DMAC_Base<T>::DEFAULT_KEYLENGTH)
- {SetKey(key, length);}
+ {this->SetKey(key, length);}
};
template <class T>