File tree 2 files changed +8
-8
lines changed
include/xflens/cxxlapack/interface
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ namespace cxxlapack {
39
39
40
40
template <typename XFLENS_VOID=void >
41
41
void
42
- labad (float &small , float &large );
42
+ labad (float &smallv , float &largev );
43
43
44
44
template <typename XFLENS_VOID=void >
45
45
void
46
- labad (double &small , double &large );
46
+ labad (double &smallv , double &largev );
47
47
48
48
} // namespace cxxlapack
49
49
Original file line number Diff line number Diff line change @@ -41,22 +41,22 @@ namespace cxxlapack {
41
41
42
42
template <typename XFLENS_VOID>
43
43
void
44
- labad (float &small , float &large )
44
+ labad (float &smallv , float &largev )
45
45
{
46
46
CXXLAPACK_DEBUG_OUT (" slabad" );
47
47
48
- LAPACK_IMPL (slabad)(&small ,
49
- &large );
48
+ LAPACK_IMPL (slabad)(&smallv ,
49
+ &largev );
50
50
}
51
51
52
52
template <typename XFLENS_VOID>
53
53
void
54
- labad (double &small , double &large )
54
+ labad (double &smallv , double &largev )
55
55
{
56
56
CXXLAPACK_DEBUG_OUT (" dlabad" );
57
57
58
- LAPACK_IMPL (dlabad)(&small ,
59
- &large );
58
+ LAPACK_IMPL (dlabad)(&smallv ,
59
+ &largev );
60
60
}
61
61
62
62
You can’t perform that action at this time.
0 commit comments