Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/StdList 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 Hauke Heibel <hauke.heibel@googlemail.com>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009 
0010 #ifndef EIGEN_STDLIST_MODULE_H
0011 #define EIGEN_STDLIST_MODULE_H
0012 
0013 #include "Core"
0014 #include <list>
0015 
0016 #if EIGEN_COMP_MSVC && EIGEN_OS_WIN64 && (EIGEN_MAX_STATIC_ALIGN_BYTES<=16) /* MSVC auto aligns up to 16 bytes in 64 bit builds */
0017 
0018 #define EIGEN_DEFINE_STL_LIST_SPECIALIZATION(...)
0019 
0020 #else
0021 
0022 #include "src/StlSupport/StdList.h"
0023 
0024 #endif
0025 
0026 #endif // EIGEN_STDLIST_MODULE_H