xref: /aosp_15_r20/external/eigen/Eigen/StdDeque (revision bf2c37156dfe67e5dfebd6d394bad8b2ab5804d4)
1*bf2c3715SXin Li// This file is part of Eigen, a lightweight C++ template library
2*bf2c3715SXin Li// for linear algebra.
3*bf2c3715SXin Li//
4*bf2c3715SXin Li// Copyright (C) 2009 Gael Guennebaud <[email protected]>
5*bf2c3715SXin Li// Copyright (C) 2009 Hauke Heibel <[email protected]>
6*bf2c3715SXin Li//
7*bf2c3715SXin Li// This Source Code Form is subject to the terms of the Mozilla
8*bf2c3715SXin Li// Public License v. 2.0. If a copy of the MPL was not distributed
9*bf2c3715SXin Li// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10*bf2c3715SXin Li
11*bf2c3715SXin Li#ifndef EIGEN_STDDEQUE_MODULE_H
12*bf2c3715SXin Li#define EIGEN_STDDEQUE_MODULE_H
13*bf2c3715SXin Li
14*bf2c3715SXin Li#include "Core"
15*bf2c3715SXin Li#include <deque>
16*bf2c3715SXin Li
17*bf2c3715SXin Li#if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 && (EIGEN_MAX_STATIC_ALIGN_BYTES<=16) /* MSVC auto aligns up to 16 bytes in 64 bit builds */
18*bf2c3715SXin Li
19*bf2c3715SXin Li#define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...)
20*bf2c3715SXin Li
21*bf2c3715SXin Li#else
22*bf2c3715SXin Li
23*bf2c3715SXin Li#include "src/StlSupport/StdDeque.h"
24*bf2c3715SXin Li
25*bf2c3715SXin Li#endif
26*bf2c3715SXin Li
27*bf2c3715SXin Li#endif // EIGEN_STDDEQUE_MODULE_H
28