1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-18 15:57:05 +01:00

Removed some assertions in Test_simd and removed exit() in Reduce

This commit is contained in:
nmeyer-ur
2020-05-11 22:43:00 +02:00
parent 05edf803bd
commit b7c76ede29
2 changed files with 44 additions and 34 deletions

View File

@ -691,7 +691,7 @@ struct Reduce{
//General form must generate error if compiled
inline Out_type operator()(In_type in){
printf("Error, using wrong Reduce function\n");
exit(1);
//exit(1);
return 0;
}
};