1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-14 13:57:07 +01:00

Warning elimination; drop to -O2 on G++ bad versions

This commit is contained in:
paboyle
2017-05-06 14:44:49 +01:00
parent 1d96f662e3
commit 2439999ec8
8 changed files with 20 additions and 10 deletions

9
lib/Grid_Eigen_Dense.h Normal file
View File

@ -0,0 +1,9 @@
#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