aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/StdVector
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-04-23 11:33:36 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-04-23 11:33:36 +0000
commitacb32c69d4e8a78763400ac045b7e06930348fe9 (patch)
tree0f48303571d5f3a1d39827eb82dffafd34a66324 /Eigen/StdVector
parentc7bb7436f9107f96d32c229313bb3f72a85fbf21 (diff)
* update BVH to explicitely use aligned_allocator
* fix warning in StdVector
Diffstat (limited to 'Eigen/StdVector')
-rw-r--r--Eigen/StdVector2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/StdVector b/Eigen/StdVector
index 6d629061f..6c62f518f 100644
--- a/Eigen/StdVector
+++ b/Eigen/StdVector
@@ -26,7 +26,7 @@ public:
};
aligned_allocator_indirection() throw() {}
- aligned_allocator_indirection(const aligned_allocator_indirection& ) throw() {}
+ aligned_allocator_indirection(const aligned_allocator_indirection& ) throw() : aligned_allocator<T>() {}
aligned_allocator_indirection(const aligned_allocator<T>& ) throw() {}
template<class U>
aligned_allocator_indirection(const aligned_allocator_indirection<U>& ) throw() {}