aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/StdDeque
diff options
context:
space:
mode:
authorGravatar Kenneth Riddile <kfriddile@gmail.com>2010-07-26 19:06:47 -0400
committerGravatar Kenneth Riddile <kfriddile@gmail.com>2010-07-26 19:06:47 -0400
commitb038a4bb71514d90fed7d71ec40210bbf775b5ec (patch)
tree0f8fcd15006436d9d173961defd6dc6ac4656a53 /Eigen/StdDeque
parent1420f8b3a16e025ca54402a2feb17f8ed4b41694 (diff)
* added EIGEN_ALIGNED_ALLOCATOR macro to allow specifying a different aligned allocator
* attempted to add support for std::deque by copying and modifying the std::vector implementation...MSVC still fails to compile with the std::deque::resize() "will not be aligned" error...probably missing something simple but I'm not sure how to make it work
Diffstat (limited to 'Eigen/StdDeque')
-rw-r--r--Eigen/StdDeque42
1 files changed, 42 insertions, 0 deletions
diff --git a/Eigen/StdDeque b/Eigen/StdDeque
new file mode 100644
index 000000000..a4f96232d
--- /dev/null
+++ b/Eigen/StdDeque
@@ -0,0 +1,42 @@
+// This file is part of Eigen, a lightweight C++ template library
+// for linear algebra.
+//
+// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
+// Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
+//
+// Eigen is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 3 of the License, or (at your option) any later version.
+//
+// Alternatively, you can redistribute it and/or
+// modify it under the terms of the GNU General Public License as
+// published by the Free Software Foundation; either version 2 of
+// the License, or (at your option) any later version.
+//
+// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License and a copy of the GNU General Public License along with
+// Eigen. If not, see <http://www.gnu.org/licenses/>.
+
+#ifndef EIGEN_STDDEQUE_MODULE_H
+#define EIGEN_STDDEQUE_MODULE_H
+
+#include "Core"
+#include <deque>
+
+#if (defined(_MSC_VER) && defined(_WIN64)) /* MSVC auto aligns in 64 bit builds */
+
+#define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...)
+
+#else
+
+#include "src/StlSupport/StdDeque.h"
+
+#endif
+
+#endif // EIGEN_STDDEQUE_MODULE_H