From e91f0c208605f27d2ba9e2a9c584c92212ab0088 Mon Sep 17 00:00:00 2001 From: Tom Barrett Date: Wed, 6 May 2015 14:03:33 -0500 Subject: made list vector not get infinitly big --- inc/location.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc') 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; }; -- cgit v1.2.3