kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #31267
[PATCH 3/3] box2: Remove wrong use of typename keyword
---
include/math/box2.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/math/box2.h b/include/math/box2.h
index 5bf6ddd03..fb6fd9d5c 100644
--- a/include/math/box2.h
+++ b/include/math/box2.h
@@ -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() {};
--
2.14.1
References