From 9d4abdcaade31bcf578776dbdb0b65fb9ea3b679 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 25 Nov 2008 10:09:11 +0000 Subject: [PATCH] fix typo --- Convex_hull_2/examples/Convex_hull_2/vector_convex_hull_2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Convex_hull_2/examples/Convex_hull_2/vector_convex_hull_2.cpp b/Convex_hull_2/examples/Convex_hull_2/vector_convex_hull_2.cpp index 7e150c4447c..32b95083fb5 100644 --- a/Convex_hull_2/examples/Convex_hull_2/vector_convex_hull_2.cpp +++ b/Convex_hull_2/examples/Convex_hull_2/vector_convex_hull_2.cpp @@ -5,7 +5,7 @@ typedef CGAL::Exact_predicates_inexact_constructions_kernel K; typedef K::Point_2 Point_2; -typdef std::vector Points; +typedef std::vector Points; int main() {