Cleanup: redundant 'break', minor edits

This commit is contained in:
2015-11-19 16:16:06 +11:00
parent b8c40d47e0
commit ae8e4d3718
8 changed files with 5 additions and 11 deletions

View File

@@ -357,7 +357,6 @@ static MeshRemapIslandsCalc data_transfer_get_loop_islands_generator(const int c
switch (cddata_type) {
case CD_FAKE_UV:
return BKE_mesh_calc_islands_loop_poly_uv;
break;
default:
break;
}

View File

@@ -512,10 +512,8 @@ static bool ch_is_op(char op)
case '=':
case '%':
return true;
break;
default:
return false;
break;
}
}