Remove VC++ 6.0 guard and code (Issue 342)

This commit is contained in:
Jeffrey Walton 2017-03-01 09:11:41 -05:00
parent 5efb019d8b
commit b791234b53
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -31,11 +31,7 @@ class AllocatorBase
public:
typedef T value_type;
typedef size_t size_type;
#ifdef CRYPTOPP_MSVCRT6
typedef ptrdiff_t difference_type;
#else
typedef std::ptrdiff_t difference_type;
#endif
typedef T * pointer;
typedef const T * const_pointer;
typedef T & reference;