Set integer point type to int32_t.

master
Fabien Freling 2014-08-05 08:47:52 +02:00
parent bcc195c775
commit 784fc07a15
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ struct TPoint {
}
};
typedef TPoint<int64_t> Point;
typedef TPoint<int32_t> Point;
typedef TPoint<double> DPoint; // absolute point, can be negative
template<typename Elem, typename Traits, typename T>