Closed HappySeaFox closed 11 years ago
GCC 4.8.1 warns about the following code:
if(myEntry.type == QDROPBOXJSON_TYPE_JSON) if(myEntry.value.json->compare(*yourEntry.value.json) != 0) return 1; else if(myEntry.value.value->compare(yourEntry.value.value) != 0) return 1;
Looks like if/else mismatch. Did you mean
if(myEntry.type == QDROPBOXJSON_TYPE_JSON) { if(myEntry.value.json->compare(*yourEntry.value.json) != 0) return 1; } else if(myEntry.value.value->compare(yourEntry.value.value) != 0) return 1;
?
GCC 4.8.1 warns about the following code:
Looks like if/else mismatch. Did you mean
?