2009-05-06 23:48:28 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
2009-05-23 02:25:33 +08:00
|
|
|
// for linear algebra.
|
2009-05-06 23:48:28 +08:00
|
|
|
//
|
2010-06-25 05:21:58 +08:00
|
|
|
// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2009-05-06 23:48:28 +08:00
|
|
|
// Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
|
|
|
|
//
|
2012-07-14 02:42:47 +08:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2009-05-06 23:48:28 +08:00
|
|
|
|
2009-01-10 07:26:45 +08:00
|
|
|
#ifndef EIGEN_STDVECTOR_MODULE_H
|
|
|
|
#define EIGEN_STDVECTOR_MODULE_H
|
|
|
|
|
2009-04-22 05:30:38 +08:00
|
|
|
#include "Core"
|
2009-04-21 16:12:07 +08:00
|
|
|
#include <vector>
|
2009-01-10 07:26:45 +08:00
|
|
|
|
2017-02-03 22:22:35 +08:00
|
|
|
#if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 && (EIGEN_MAX_STATIC_ALIGN_BYTES<=16) /* MSVC auto aligns up to 16 bytes in 64 bit builds */
|
2009-04-22 05:30:38 +08:00
|
|
|
|
2010-04-19 02:16:39 +08:00
|
|
|
#define EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(...)
|
2009-02-07 19:16:15 +08:00
|
|
|
|
|
|
|
#else
|
2010-04-19 02:16:39 +08:00
|
|
|
|
|
|
|
#include "src/StlSupport/StdVector.h"
|
2009-02-07 19:16:15 +08:00
|
|
|
|
2009-04-22 05:30:38 +08:00
|
|
|
#endif
|
2009-02-07 19:16:15 +08:00
|
|
|
|
2009-01-10 07:26:45 +08:00
|
|
|
#endif // EIGEN_STDVECTOR_MODULE_H
|