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