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...),