mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-30 07:44:10 +08:00
fix warning
This commit is contained in:
parent
a5f820b873
commit
fe4a86443f
@ -165,7 +165,7 @@ std::ostream & ei_print_matrix(std::ostream & s, const Derived& _m, const IOForm
|
|||||||
width = std::max<int>(width, int(sstr.str().length()));
|
width = std::max<int>(width, int(sstr.str().length()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::streamsize old_precision;
|
std::streamsize old_precision = 0;
|
||||||
if(explicit_precision) old_precision = s.precision(explicit_precision);
|
if(explicit_precision) old_precision = s.precision(explicit_precision);
|
||||||
s << fmt.matPrefix;
|
s << fmt.matPrefix;
|
||||||
for(int i = 0; i < m.rows(); ++i)
|
for(int i = 0; i < m.rows(); ++i)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user