提交 705dde57 编写于 作者: M Michiharu Ariza

silence MVC warnings 2nd attempt

上级 dd4c3752
...@@ -165,8 +165,8 @@ struct bounds_t ...@@ -165,8 +165,8 @@ struct bounds_t
{ {
void init () void init ()
{ {
min.set_int ((1<<31)-1, (1<<31)-1); min.set_int (2147483647, 2147483647);
max.set_int (-(1<<31), -(1<<31)); max.set_int (-2147483648, -2147483648);
} }
void update (const point_t &pt) void update (const point_t &pt)
......
...@@ -34,10 +34,10 @@ struct extents_param_t ...@@ -34,10 +34,10 @@ struct extents_param_t
void init () void init ()
{ {
path_open = false; path_open = false;
min_x.set_int ((1<<31)-1); min_x.set_int (2147483647);
min_y.set_int ((1<<31)-1); min_y.set_int (2147483647);
max_x.set_int (-(1<<31)); max_x.set_int (-2147483648);
max_y.set_int (-(1<<31)); max_y.set_int (-2147483648);
} }
void start_path () { path_open = true; } void start_path () { path_open = true; }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册