2008-05-31 18:11:48 +00:00
|
|
|
#ifndef EIGEN_ARRAY_MODULE_H
|
|
|
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
|
|
2010-01-20 20:51:01 +01:00
|
|
|
#ifdef _MSC_VER
|
2010-01-20 20:56:52 +01:00
|
|
|
#pragma message("The inclusion of Eigen/Array is deprecated. \
|
|
|
|
|
The array module is available as soon as Eigen/Core is included.")
|
2010-01-20 21:36:50 +01:00
|
|
|
#elif __GNUC__
|
|
|
|
|
#warning "The inclusion of Eigen/Array is deprecated. \
|
|
|
|
|
The array module is available as soon as Eigen/Core is included."
|
2010-01-20 20:51:01 +01:00
|
|
|
#endif
|
2008-07-22 10:54:42 +00:00
|
|
|
|
2010-01-20 20:51:01 +01:00
|
|
|
#include "Core"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
2008-05-31 18:11:48 +00:00
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|