Use ASSERT instead of assert

This commit is contained in:
David Capello 2020-03-25 18:42:24 -03:00
parent f532539a76
commit ba1a8611a9

View File

@ -24,7 +24,7 @@ namespace doc {
}
inline int scale_6bits_to_8bits(const int v) {
assert(v >= 0 && v < 64);
ASSERT(v >= 0 && v < 64);
return (v << 2) | (v >> 4);
}