File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1402,11 +1402,11 @@ struct ctaylor
1402
1402
}
1403
1403
template <
1404
1404
std::size_t _MAX = MAX,
1405
+ std::size_t PSIZE = SIZE,
1405
1406
typename std::enable_if<
1406
1407
(_MAX > 1 ),
1407
1408
int
1408
- >::type = 0 ,
1409
- std::size_t PSIZE
1409
+ >::type = 0
1410
1410
>
1411
1411
friend auto tgamma (const ctaylor&_r, const double _d, const std::array<double , PSIZE>&_rPG)
1412
1412
{ static_assert (PSIZE >= _MAX, " PSIZE >= MAX" );
@@ -1420,11 +1420,11 @@ struct ctaylor
1420
1420
}
1421
1421
template <
1422
1422
std::size_t _MAX = MAX,
1423
+ std::size_t PSIZE = SIZE,
1423
1424
typename std::enable_if<
1424
1425
(_MAX == 1 ),
1425
1426
int
1426
- >::type = 0 ,
1427
- std::size_t PSIZE
1427
+ >::type = 0
1428
1428
>
1429
1429
friend auto tgamma (const ctaylor&_r, const double _d, const std::array<double , PSIZE>&_rPG)
1430
1430
{ static_assert (PSIZE >= _MAX, " PSIZE >= MAX" );
You can’t perform that action at this time.
0 commit comments