Kaydet (Commit) 69183fd1 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: implicit conversion (IntegralCast) from bool to 'unsigned long'

Change-Id: Icff8f89f64f335d8601ced11c83d4d30c2abac18
üst ce239f39
......@@ -101,7 +101,7 @@ struct ScBroadcastAreaHash
{
size_t operator()( const ScBroadcastAreaEntry& rEntry ) const
{
return rEntry.mpArea->GetRange().hashArea() + rEntry.mpArea->IsGroupListening();
return rEntry.mpArea->GetRange().hashArea() + static_cast<size_t>(rEntry.mpArea->IsGroupListening());
}
};
......
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