mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
digits10() needs to return an integer
Problem reported on https://stackoverflow.com/questions/56395899
This commit is contained in:
parent
36e0a2b93f
commit
5614400581
@ -75,7 +75,7 @@ namespace Eigen {
|
|||||||
|
|
||||||
static inline Real epsilon() { return 0; }
|
static inline Real epsilon() { return 0; }
|
||||||
static inline Real dummy_precision() { return 0; }
|
static inline Real dummy_precision() { return 0; }
|
||||||
static inline Real digits10() { return 0; }
|
static inline int digits10() { return 0; }
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
IsInteger = 0,
|
IsInteger = 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user