fix compile on MSVC .NET 2005
parent
9cd298bc8b
commit
86a46d7dc9
|
|
@ -105,6 +105,8 @@ struct OIDLessThan
|
||||||
inline bool operator()(const EcRecommendedParameters<T>& a, const OID& b) {return a.oid < b;}
|
inline bool operator()(const EcRecommendedParameters<T>& a, const OID& b) {return a.oid < b;}
|
||||||
template <typename T>
|
template <typename T>
|
||||||
inline bool operator()(const OID& a, const EcRecommendedParameters<T>& b) {return a < b.oid;}
|
inline bool operator()(const OID& a, const EcRecommendedParameters<T>& b) {return a < b.oid;}
|
||||||
|
template <typename T>
|
||||||
|
inline bool operator()(const EcRecommendedParameters<T>& a, const EcRecommendedParameters<T>& b) {return a.oid < b.oid;}
|
||||||
};
|
};
|
||||||
|
|
||||||
static void GetRecommendedParameters(const EcRecommendedParameters<EC2N> *&begin, const EcRecommendedParameters<EC2N> *&end)
|
static void GetRecommendedParameters(const EcRecommendedParameters<EC2N> *&begin, const EcRecommendedParameters<EC2N> *&end)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue