2009-05-06 15:48:28 +00:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
2009-05-22 20:25:33 +02:00
|
|
|
// for linear algebra.
|
2009-05-06 15:48:28 +00:00
|
|
|
//
|
2010-06-24 23:21:58 +02:00
|
|
|
// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2009-05-06 15:48:28 +00:00
|
|
|
// Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
|
|
|
|
//
|
2012-07-13 14:42:47 -04: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 15:48:28 +00:00
|
|
|
|
2009-01-09 23:26:45 +00:00
|
|
|
#ifndef EIGEN_STDVECTOR_MODULE_H
|
|
|
|
#define EIGEN_STDVECTOR_MODULE_H
|
|
|
|
|
2009-04-21 21:30:38 +00:00
|
|
|
#include "Core"
|
2009-04-21 08:12:07 +00:00
|
|
|
#include <vector>
|
2009-01-09 23:26:45 +00:00
|
|
|
|
2014-11-04 21:58:52 +01:00
|
|
|
#if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 /* MSVC auto aligns in 64 bit builds */
|
2009-04-21 21:30:38 +00:00
|
|
|
|
2010-04-18 20:16:39 +02:00
|
|
|
#define EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(...)
|
2009-02-07 11:16:15 +00:00
|
|
|
|
|
|
|
#else
|
2010-04-18 20:16:39 +02:00
|
|
|
|
|
|
|
#include "src/StlSupport/StdVector.h"
|
2009-02-07 11:16:15 +00:00
|
|
|
|
2009-04-21 21:30:38 +00:00
|
|
|
#endif
|
2009-02-07 11:16:15 +00:00
|
|
|
|
2009-01-09 23:26:45 +00:00
|
|
|
#endif // EIGEN_STDVECTOR_MODULE_H
|