Kaydet (Commit) 28270d93 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:redundantcast: connectivity

(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)

Change-Id: I43a148a0d192f85bbad95696c7c3c3e717c5b00a
üst e84c8b27
......@@ -739,7 +739,7 @@ void MorkParser::dump()
TableIter != iter->second.map.end(); ++TableIter )
{
std::cout << "\t Table:"
<< ( ( int ) TableIter->first < 0 ? "-" : " " )
<< ( TableIter->first < 0 ? "-" : " " )
<< TableIter->first << std::endl;
for (RowScopeMap::Map::const_iterator RowScopeIter = TableIter->second.map.begin();
......@@ -752,7 +752,7 @@ void MorkParser::dump()
RowIter != RowScopeIter->second.map.end(); ++RowIter )
{
std::cout << "\t\t\t Row Id:"
<< ((int) RowIter->first < 0 ? "-" : " ")
<< (RowIter->first < 0 ? "-" : " ")
<< RowIter->first << std::endl;
std::cout << "\t\t\t\t Cells:" << std::endl;
......
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