try to fix pipeline 2

This commit is contained in:
Christian Zimmermann 2022-12-04 17:49:17 +01:00
parent 9c2b29ac07
commit 9fad49a2eb
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ stages:
build-centos:
stage: build
script:
- source /opt/rh/devtoolset-7/enable
- source /opt/rh/devtoolset-8/enable
- mkdir build
- cd build
- cmake3 ..

View file

@ -64,7 +64,7 @@ namespace CNORXZ
{
return std::make_tuple
( iter<Is,NI>
( [&ipack](auto i) { return std::get<i>(ipack)->pmax(); },
( [&](auto i) { return std::get<i>(ipack)->pmax(); },
[](const auto&... as) { return (as * ...); } )...,
SPos<1>() );
}