Skip to content

Commit 6f3343c

Browse files
author
Aleksander J. Dubas
committed
Update patch for Intel compilers to match upstream changes
1 parent 54b6352 commit 6f3343c

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

scripts/intel.patch

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
diff --git a/framework/src/variables/MooseVariableData.C b/framework/src/variables/MooseVariableData.C
2-
index 48d74988..8f8a76a2 100644
2+
index cc78d8d4..3032145c 100644
33
--- a/framework/src/variables/MooseVariableData.C
44
+++ b/framework/src/variables/MooseVariableData.C
5-
@@ -515,10 +515,10 @@ MooseVariableData<OutputType>::computeValuesInternal()
6-
else if constexpr (is_second)
7-
dest[qp].setZero(this->_count, LIBMESH_DIM * LIBMESH_DIM);
8-
else
9-
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
10-
+ ;
11-
}
5+
@@ -464,10 +464,10 @@ MooseVariableData<OutputType>::fill(DestinationType & dest,
6+
else if constexpr (is_second)
7+
dest[qp].setZero(this->_count, LIBMESH_DIM * LIBMESH_DIM);
128
else
139
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
1410
+ ;
15-
};
11+
}
12+
else
13+
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
14+
+ ;
15+
};
1616

17-
// Accumulates a value
18-
@@ -531,7 +531,7 @@ MooseVariableData<OutputType>::computeValuesInternal()
19-
else if constexpr (is_gradient || is_second)
20-
dest[qp].add_scaled(phi[i][qp], dof_values[i]);
21-
else
22-
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
23-
+ ;
24-
}
25-
else if constexpr (is_eigen)
26-
{
27-
@@ -547,10 +547,10 @@ MooseVariableData<OutputType>::computeValuesInternal()
28-
dest[qp].col(d++) += phi[i][qp](d1, d2) * dof_values[i];
29-
}
30-
else
31-
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
32-
+ ;
17+
// Accumulates a value
18+
@@ -480,7 +480,7 @@ MooseVariableData<OutputType>::fill(DestinationType & dest,
19+
else if constexpr (is_gradient || is_second)
20+
dest[qp].add_scaled(phi[i][qp], dof_values[i]);
21+
else
22+
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
23+
+ ;
24+
}
25+
else if constexpr (is_eigen)
26+
{
27+
@@ -496,10 +496,10 @@ MooseVariableData<OutputType>::fill(DestinationType & dest,
28+
dest[qp].col(d++) += phi[i][qp](d1, d2) * dof_values[i];
3329
}
3430
else
3531
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
3632
+ ;
37-
};
33+
}
34+
else
35+
- static_assert(Moose::always_false<OutputType, dest_array_type>, "Unsupported type");
36+
+ ;
37+
};
3838

39-
dest.resize(nqp);
39+
dest.resize(nqp);

0 commit comments

Comments
 (0)