1
1

Added an assertion to offset_rounddown to make sure that b != 0.

Этот коммит содержится в:
Roland Illig 2005-07-06 22:35:17 +00:00
родитель 5d9985751a
Коммит 338c32c400

Просмотреть файл

@ -266,6 +266,7 @@ offset_doz (offset_type a, offset_type b)
static inline offset_type
offset_rounddown (offset_type a, offset_type b)
{
assert (b != 0);
return a - a % b;
}