Remove useless casts

This commit removes only casts where type A is cast to the exactly same
type (and not to a platform dependent typedefs)
This commit is contained in:
Dan Čermák
2018-03-31 10:43:37 +02:00
parent 9583e447b2
commit bc58752d18
8 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ try {
xmpData["Xmp.dc.two"] = 3.1415;
xmpData["Xmp.dc.three"] = Exiv2::Rational(5, 7);
xmpData["Xmp.dc.four"] = uint16_t(255);
xmpData["Xmp.dc.five"] = int32_t(256);
xmpData["Xmp.dc.five"] = 256;
xmpData["Xmp.dc.six"] = false;
// In addition, there is a dedicated assignment operator for Exiv2::Value