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:
committed by
Luis Díaz Más
parent
8e178e912e
commit
c73dfa0106
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user