clang-tidy: use uppercase numeric literals

Found with readability-uppercase-literal-suffix

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2021-05-13 18:51:42 -07:00
committed by Luis Díaz Más
parent 8e178e912e
commit c73dfa0106
15 changed files with 43 additions and 44 deletions
+1 -1
View File
@@ -1183,7 +1183,7 @@ namespace Exiv2 {
return os << "(" << value << ")";
}
float f = value.toFloat();
if (f == 0.0f || f == 1.0f)
if (f == 0.0F || f == 1.0F)
return os << _("None");
std::ostringstream oss;
oss.copyfmt(os);