mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
10 lines
206 B
C
10 lines
206 B
C
#pragma once
|
|
#if defined __GNUC__
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
#endif
|
|
#include <Eigen/Dense>
|
|
#if defined __GNUC__
|
|
#pragma GCC diagnostic pop
|
|
#endif
|