Revert previous change after discussion with Campbell

Let's just be really verbose and it some compiler gives
issues tell him NOT to do this.

We shouldn't really workaround compiles' idiocy..
This commit is contained in:
Sergey Sharybin 2014-04-25 17:16:06 +06:00
parent 9d335dffa4
commit fe52e64f6b
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ typedef struct BoxVert {
BLI_INLINE int quad_flag(unsigned int q)
{
BLI_assert(q < 4);
BLI_assert(q < 4 && q >= 0);
return (1 << q);
}