Kaydet (Commit) 09c09fa2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4805: == : unsafe mix of type[s]

Change-Id: I1bbcfbbab6e077d4516a22c2e0c0d4ec4dd12aca
üst 6dc887d8
......@@ -1009,7 +1009,7 @@ size_t WalkAndMatchElements<double>::compare(const MatrixImplType::element_block
MatrixImplType::boolean_block_type::const_iterator itEnd = MatrixImplType::boolean_block_type::end(*node.data);
for (; it != itEnd; ++it, ++nCount)
{
if (*it == maMatchValue)
if (int(*it) == maMatchValue)
{
return mnIndex + nCount;
}
......
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