backporting rev 951682 (compilation fix in aligned allocator)

This commit is contained in:
Gael Guennebaud 2009-04-09 21:23:25 +00:00
parent 3c90fc2e64
commit c15842c374

View File

@ -341,6 +341,12 @@ public:
{
ei_aligned_free( p );
}
bool operator!=(const aligned_allocator<T>& other) const
{ return false; }
bool operator==(const aligned_allocator<T>& other) const
{ return true; }
};
#endif // EIGEN_MEMORY_H