mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
15 lines
398 B
Plaintext
15 lines
398 B
Plaintext
#ifndef EIGEN_ARRAY_MODULE_H
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma message("The inclusion of Eigen/Array is deprecated. \
|
|
The array module is available as soon as Eigen/Core is included.")
|
|
#elif __GNUC__
|
|
#warning "The inclusion of Eigen/Array is deprecated. \
|
|
The array module is available as soon as Eigen/Core is included."
|
|
#endif
|
|
|
|
#include "Core"
|
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|