1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

constexpr on const ints

This commit is contained in:
paboyle 2018-02-01 22:59:12 +00:00
parent 4450b1993a
commit cfeda9d536

View File

@ -62,7 +62,7 @@ public:
// S-direction is INNERMOST and takes no part in the parity. // S-direction is INNERMOST and takes no part in the parity.
static const std::vector<int> directions; static const std::vector<int> directions;
static const std::vector<int> displacements; static const std::vector<int> displacements;
const int npoint = 8; static constexpr int npoint = 8;
}; };
template<class Impl> template<class Impl>