From: Martin Read Date: Thu, 8 Mar 2012 21:36:14 +0000 (+0000) Subject: Fixed error in Coord.hh that meant it would always use int X-Git-Url: http://git.blackswordsonics.com/?a=commitdiff_plain;h=05feb8abb6ad05585be185da2eea3d7407db48fe;p=libmormegil Fixed error in Coord.hh that meant it would always use int --- diff --git a/include/libmormegil/Coord.hh b/include/libmormegil/Coord.hh index f2045db..6b647b3 100644 --- a/include/libmormegil/Coord.hh +++ b/include/libmormegil/Coord.hh @@ -28,8 +28,8 @@ namespace libmormegil { typedef basic_offset& ref; typedef const basic_offset& const_ref; - int y; - int x; + T y; + T x; ref operator +=(const_ref right) { y += right.y;