mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
13 lines
307 B
Plaintext
13 lines
307 B
Plaintext
#ifndef EIGEN_ARRAY_MODULE_H
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
// No idea how to do that per file for gcc...
|
|
#ifdef _MSC_VER
|
|
#pragma message("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
|