silence MVC warnings 2nd attempt
This commit is contained in:
parent
dd4c37529b
commit
705dde57fe
|
@ -165,8 +165,8 @@ struct bounds_t
|
|||
{
|
||||
void init ()
|
||||
{
|
||||
min.set_int ((1<<31)-1, (1<<31)-1);
|
||||
max.set_int (-(1<<31), -(1<<31));
|
||||
min.set_int (2147483647, 2147483647);
|
||||
max.set_int (-2147483648, -2147483648);
|
||||
}
|
||||
|
||||
void update (const point_t &pt)
|
||||
|
|
|
@ -34,10 +34,10 @@ struct extents_param_t
|
|||
void init ()
|
||||
{
|
||||
path_open = false;
|
||||
min_x.set_int ((1<<31)-1);
|
||||
min_y.set_int ((1<<31)-1);
|
||||
max_x.set_int (-(1<<31));
|
||||
max_y.set_int (-(1<<31));
|
||||
min_x.set_int (2147483647);
|
||||
min_y.set_int (2147483647);
|
||||
max_x.set_int (-2147483648);
|
||||
max_y.set_int (-2147483648);
|
||||
}
|
||||
|
||||
void start_path () { path_open = true; }
|
||||
|
|
Loading…
Reference in New Issue