Skip to content

Commit 5ff4c5a

Browse files
committed
Fixup: fix bad order of template parameters
The itemdecl has the right order. See #8550 (comment)
1 parent 2dcc169 commit 5ff4c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/numerics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11323,7 +11323,7 @@
1132311323
// updating nonsymmetric rank-1 matrix update
1132411324
template<@\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2, @\exposconcept{in-matrix}@ InMat, @\exposconcept{out-matrix}@ OutMat>
1132511325
void matrix_rank_1_update(InVec1 x, InVec2 y, InMat E, OutMat A);
11326-
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec1, @\exposconcept{in-matrix}@ InMat, @\exposconcept{in-vector}@ InVec2,
11326+
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec1, @\exposconcept{in-vector}@ InVec2, @\exposconcept{in-matrix}@ InMat,
1132711327
@\exposconcept{out-matrix}@ OutMat>
1132811328
void matrix_rank_1_update(ExecutionPolicy&& exec,
1132911329
InVec1 x, InVec2 y, InMat E, OutMat A);

0 commit comments

Comments
 (0)