From d4a6c115bca0a0a87876b01854f556d05fed88ad Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 18 Dec 2014 19:43:13 +1100 Subject: [PATCH] point: add point2u typedef for point --- point.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/point.hpp b/point.hpp index a9ba0e8f..ef51cf72 100644 --- a/point.hpp +++ b/point.hpp @@ -74,6 +74,8 @@ namespace util { typedef point<2,double> point2d; typedef point<3,double> point3d; + + typedef point<2,size_t> point2u; } #include "point.ipp"