Fix build for recent bmo commit (gcc wants a return value in any case! ;) ).

This commit is contained in:
Bastien Montagne
2012-10-30 09:29:01 +00:00
parent 27f4609ba6
commit 6341bc2cd0

View File

@@ -99,6 +99,7 @@ static int bm_sel_similar_cmp_fl(const float delta, const float thresh, const in
return ((delta - thresh) <= 0.0f);
default:
BLI_assert(0);
return 0;
}
}
@@ -113,6 +114,7 @@ static int bm_sel_similar_cmp_i(const int delta, const int compare)
return (delta < 0);
default:
BLI_assert(0);
return 0;
}
}