box2: Remove wrong use of typename keyword

This commit is contained in:
Marvin Schmidt 2017-11-05 22:05:05 +01:00 committed by Maciej Suminski
parent a6ca44d9f0
commit ad9916e2cc
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ private:
public:
typedef typename Vec::coord_type coord_type;
typedef typename Vec::extended_type ecoord_type;
typedef typename std::numeric_limits<coord_type> coord_limits;
typedef std::numeric_limits<coord_type> coord_limits;
BOX2() {};