diff options
author | Tom Barrett <tombarrett@cornell.engr.siu.edu> | 2015-05-06 14:03:33 -0500 |
---|---|---|
committer | Tom Barrett <tombarrett@cornell.engr.siu.edu> | 2015-05-06 14:03:33 -0500 |
commit | e91f0c208605f27d2ba9e2a9c584c92212ab0088 (patch) | |
tree | b352e62e57c9375fc38bfab17e36a459200c2f65 /inc | |
parent | a67acef63379f9fd9f5bd983b70a81c50c544eda (diff) |
made list vector not get infinitly big
Diffstat (limited to 'inc')
-rw-r--r-- | inc/location.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/location.hpp b/inc/location.hpp index c4428f5..2042734 100644 --- a/inc/location.hpp +++ b/inc/location.hpp @@ -7,9 +7,9 @@ class Location Location(){x=y=t=0;}; Location(int x, int y, int z){}; int getType(){return t;}; - + private: - int x; + int x; int y; int t; }; |