summaryrefslogtreecommitdiff
path: root/luc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-12-03 05:05:56 -0500
committerJeffrey Walton <noloader@gmail.com>2016-12-03 05:05:56 -0500
commitba75834ae9b3846a19291c8c281626dd0a891779 (patch)
tree85c0492501a0f44c640120e9cacc740354824a47 /luc.h
parentbded4d385fcb74c517e35bf252ac8c6d60a0599f (diff)
downloadcryptopp-git-ba75834ae9b3846a19291c8c281626dd0a891779.tar.gz
Removed VC++ 5.0 and 6.0 workarounds (Issue 342)
Diffstat (limited to 'luc.h')
-rw-r--r--luc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luc.h b/luc.h
index beb07c0e..ea16a44a 100644
--- a/luc.h
+++ b/luc.h
@@ -116,7 +116,7 @@ struct LUC
//! trapdoor functions and probably shouldn't be used in production software. The discrete log based LUC schemes
//! defined later in this .h file may be of more practical interest.
template <class STANDARD>
-struct LUCES : public TF_ES<STANDARD, LUC>
+struct LUCES : public TF_ES<LUC, STANDARD>
{
};
@@ -125,7 +125,7 @@ struct LUCES : public TF_ES<STANDARD, LUC>
//! trapdoor functions and probably shouldn't be used in production software. The discrete log based LUC schemes
//! defined later in this .h file may be of more practical interest.
template <class STANDARD, class H>
-struct LUCSS : public TF_SS<STANDARD, H, LUC>
+struct LUCSS : public TF_SS<LUC, STANDARD, H>
{
};