aboutsummaryrefslogtreecommitdiffstats
path: root/common/base_clusterinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/base_clusterinfo.h')
-rw-r--r--common/base_clusterinfo.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/common/base_clusterinfo.h b/common/base_clusterinfo.h
index a79f2686..32e6f87e 100644
--- a/common/base_clusterinfo.h
+++ b/common/base_clusterinfo.h
@@ -32,10 +32,9 @@ struct CellInfo;
struct BaseClusterInfo
{
std::vector<CellInfo *> constr_children;
- const int UNCONSTR = INT_MIN;
- int constr_x = UNCONSTR; // this.x - parent.x
- int constr_y = UNCONSTR; // this.y - parent.y
- int constr_z = UNCONSTR; // this.z - parent.z
+ int constr_x = 0; // this.x - parent.x
+ int constr_y = 0; // this.y - parent.y
+ int constr_z = 0; // this.z - parent.z
bool constr_abs_z = false; // parent.z := 0
};