blob: 1301365656fc0eaa32a3898c9107443f949f78d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- extra/yassl/taocrypt/src/integer.cpp.orig 2015-06-17 14:54:11 UTC
+++ extra/yassl/taocrypt/src/integer.cpp
@@ -74,7 +74,7 @@ template <class T>
CPP_TYPENAME AlignedAllocator<T>::pointer AlignedAllocator<T>::allocate(
size_type n, const void *)
{
- if (n > this->max_size())
+ if (n > AlignedAllocator<T>::max_size())
return 0;
if (n == 0)
return 0;
|