loplugin:cstylecast: nop between pointer types of exactly same spelling

Change-Id: Ic494c8e3b072adceca984a3ceec02088ac08e880
This commit is contained in:
Stephan Bergmann 2015-05-11 12:50:06 +02:00
parent 7b8f64cfec
commit cde4d4a208

View File

@ -61,9 +61,9 @@ Guess::Guess(const char * guess_str)
string enc;
//if the guess is not like "UNKNOWN" or "SHORT", go into the brackets
if(strcmp((const char*)(guess_str + 1), TEXTCAT_RESULT_UNKNOWN_STR) != 0
if(strcmp(guess_str + 1, TEXTCAT_RESULT_UNKNOWN_STR) != 0
&&
strcmp((const char*)(guess_str + 1), TEXTCAT_RESULT_SHORT_STR) != 0)
strcmp(guess_str + 1, TEXTCAT_RESULT_SHORT_STR) != 0)
{
int current_pointer = 0;