Kaydet (Commit) d9da9a6e authored tarafından Takeshi Abe's avatar Takeshi Abe

Drop redundant cast

Change-Id: Ief00bc6e82cd4e54602e069c0bafd1dfc7bdd2ff
üst a41587a7
...@@ -776,7 +776,7 @@ void OFormattedModel::read(const Reference<XObjectInputStream>& _rxInStream) thr ...@@ -776,7 +776,7 @@ void OFormattedModel::read(const Reference<XObjectInputStream>& _rxInStream) thr
aEffectiveValue <<= _rxInStream->readUTF(); aEffectiveValue <<= _rxInStream->readUTF();
break; break;
case 1: // double case 1: // double
aEffectiveValue <<= (double)_rxInStream->readDouble(); aEffectiveValue <<= _rxInStream->readDouble();
break; break;
case 2: case 2:
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment