fix compile on MSVC .NET 2005

import/raw
weidai 2005-07-13 02:18:50 +00:00
parent ec82b85cb4
commit 66c2b75668
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ struct OIDLessThan
inline bool operator()(const EcRecommendedParameters<T>& a, const OID& b) {return a.oid < b;}
template <typename T>
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)