Add std:: namespace prefix to all (hopefully) instances if size_t/ptrdfiff_t

This commit is contained in:
Gael Guennebaud
2017-01-23 22:02:53 +01:00
parent 5202bc92e6
commit 4b2e7f26aa
8 changed files with 50 additions and 50 deletions

View File

@@ -22,13 +22,13 @@ namespace Eigen {
class aligned_allocator_indirection : public EIGEN_ALIGNED_ALLOCATOR<T>
{
public:
typedef size_t size_type;
typedef ptrdiff_t difference_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
typedef T value_type;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
typedef T value_type;
template<class U>
struct rebind