From 05feb8abb6ad05585be185da2eea3d7407db48fe Mon Sep 17 00:00:00 2001 From: Martin Read Date: Thu, 8 Mar 2012 21:36:14 +0000 Subject: [PATCH] Fixed error in Coord.hh that meant it would always use int --- include/libmormegil/Coord.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0