summaryrefslogtreecommitdiff
path: root/algebra.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-16 00:53:53 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-16 00:53:53 +0000
commitae515e0b4c86dd3309f8897f9bd4e7fedcd4588f (patch)
treeb993d0d14070142a6cb22133ae181bfd2f9db4cc /algebra.h
parent36fa3fc2b13356f20ed58c37cdeb68c830c59829 (diff)
downloadcryptopp-ae515e0b4c86dd3309f8897f9bd4e7fedcd4588f.tar.gz
add CRYPTOPP_NO_VTABLE
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@69 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'algebra.h')
-rw-r--r--algebra.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/algebra.h b/algebra.h
index bb36e59..a9c677e 100644
--- a/algebra.h
+++ b/algebra.h
@@ -16,7 +16,7 @@ class Integer;
// abcd = group.Add(a, group.Add(b, group.Add(c,d));
//! Abstract Group
-template <class T> class AbstractGroup
+template <class T> class CRYPTOPP_NO_VTABLE AbstractGroup
{
public:
typedef T Element;
@@ -41,7 +41,7 @@ public:
};
//! Abstract Ring
-template <class T> class AbstractRing : public AbstractGroup<T>
+template <class T> class CRYPTOPP_NO_VTABLE AbstractRing : public AbstractGroup<T>
{
public:
typedef T Element;
@@ -135,7 +135,7 @@ template <class Element, class Iterator>
// ********************************************************
//! Abstract Euclidean Domain
-template <class T> class AbstractEuclideanDomain : public AbstractRing<T>
+template <class T> class CRYPTOPP_NO_VTABLE AbstractEuclideanDomain : public AbstractRing<T>
{
public:
typedef T Element;