Fix a wrong return type (float instead of double) in double2.hh

This commit is contained in:
Howard Trickey 2020-09-17 07:32:48 -04:00
parent f470a02afa
commit e351c96089
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ struct double2 {
return &x;
}
float length() const
double length() const
{
return len_v2_db(*this);
}