Drop alignment requirements for Jets.

Change-Id: I7cd1e8f73c6d3e0b9369e567149205075bfbcd82
This commit is contained in:
Sameer Agarwal
2012-07-15 16:32:17 -07:00
parent 4997cbc437
commit 45ccb51701
2 changed files with 18 additions and 14 deletions
+1 -2
View File
@@ -139,7 +139,6 @@ class FixedArray {
// of this code will be broken.
struct InnerContainer {
T element;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
// How many elements should we store inline?
@@ -158,7 +157,7 @@ class FixedArray {
// Allocate some space, not an array of elements of type T, so that we can
// skip calling the T constructors and destructors for space we never use.
ManualConstructor<InnerContainer> CERES_ALIGN_ATTRIBUTE(16) inline_space_[kInlineElements];
ManualConstructor<InnerContainer> inline_space_[kInlineElements];
};
// Implementation details follow