Kaydet (Commit) 4e41996b authored tarafından Julien Nabet's avatar Julien Nabet

Some cppcheck cleaning

üst 74b675cb
...@@ -245,7 +245,7 @@ xub_StrLen lcl_getMinPos( xub_StrLen pos1, xub_StrLen pos2 ) ...@@ -245,7 +245,7 @@ xub_StrLen lcl_getMinPos( xub_StrLen pos1, xub_StrLen pos2 )
min = pos2; min = pos2;
else if ( pos2 == STRING_NOTFOUND && pos1 != STRING_NOTFOUND ) else if ( pos2 == STRING_NOTFOUND && pos1 != STRING_NOTFOUND )
min = pos1; min = pos1;
else if ( pos2 != STRING_NOTFOUND && pos2 != STRING_NOTFOUND ) else if ( pos1 != STRING_NOTFOUND && pos2 != STRING_NOTFOUND )
{ {
if ( pos1 < pos2 ) if ( pos1 < pos2 )
min = pos1; min = pos1;
......
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