mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
336ad58213
* tidy the StdVector module * fix warnings (especially a | instead of ||) in stdvector test
16 lines
291 B
Plaintext
16 lines
291 B
Plaintext
#ifndef EIGEN_STDVECTOR_MODULE_H
|
|
#define EIGEN_STDVECTOR_MODULE_H
|
|
|
|
#include "Core"
|
|
#include <vector>
|
|
|
|
namespace Eigen {
|
|
#include "src/StdVector/UnalignedType.h"
|
|
} // namespace Eigen
|
|
|
|
namespace std {
|
|
#include "src/StdVector/StdVector.h"
|
|
} // namespace std
|
|
|
|
#endif // EIGEN_STDVECTOR_MODULE_H
|