minor: removed superfluous "typename"

This commit is contained in:
mtarini 2010-07-25 13:31:57 +00:00
parent 2cc56a6651
commit 4dcb3be0b3
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class Box2
public: public:
/// The scalar type /// The scalar type
typedef BoxScalarType ScalarType; typedef BoxScalarType ScalarType;
typedef typename Point2<BoxScalarType> PointType ; typedef Point2<BoxScalarType> PointType ;
/// min coordinate point /// min coordinate point
PointType min; PointType min;
@ -127,7 +127,7 @@ public:
} }
/** Varies the dimension of the bounding box. /** Varies the dimension of the bounding box.
@param delta The size delta (if positive, box is enlarged) @param delta The size delta per dimension (if positive, box is enlarged)
*/ */
void Offset(const PointType & delta) void Offset(const PointType & delta)
{ {