Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/StdDeque is written in an unsupported language. File is not indexed.

0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
0005 // Copyright (C) 2009 Hauke Heibel <hauke.heibel@googlemail.com>
0006 //
0007 // This Source Code Form is subject to the terms of the Mozilla
0008 // Public License v. 2.0. If a copy of the MPL was not distributed
0009 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0010 
0011 #ifndef EIGEN_STDDEQUE_MODULE_H
0012 #define EIGEN_STDDEQUE_MODULE_H
0013 
0014 #include "Core"
0015 #include <deque>
0016 
0017 #if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 && (EIGEN_MAX_STATIC_ALIGN_BYTES<=16) /* MSVC auto aligns up to 16 bytes in 64 bit builds */
0018 
0019 #define EIGEN_DEFINE_STL_DEQUE_SPECIALIZATION(...)
0020 
0021 #else
0022 
0023 #include "src/StlSupport/StdDeque.h"
0024 
0025 #endif
0026 
0027 #endif // EIGEN_STDDEQUE_MODULE_H