From 9f75065205926b88809bd80fdecec2252691df4f Mon Sep 17 00:00:00 2001 From: ferben Date: Fri, 15 Nov 2019 13:22:20 +0000 Subject: [PATCH] eigen_strong_inline gone --- Hadrons/NamedTensor.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hadrons/NamedTensor.hpp b/Hadrons/NamedTensor.hpp index 710064fd..a7c11790 100644 --- a/Hadrons/NamedTensor.hpp +++ b/Hadrons/NamedTensor.hpp @@ -65,13 +65,13 @@ public: const std::array &DefaultIndexNames_; // Default constructor (assumes tensor will be loaded from file) - EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE NamedTensor(const std::string &Name, + NamedTensor(const std::string &Name, const std::array &indexNames) : IndexNames{indexNames.begin(), indexNames.end()}, Name_{Name}, DefaultIndexNames_{indexNames} {} // Construct a named tensor explicitly specifying size of each dimension template - EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE NamedTensor(const std::string &Name, + NamedTensor(const std::string &Name, const std::array &indexNames, Eigen::Index firstDimension, IndexTypes... otherDimensions) : tensor(firstDimension, otherDimensions...),