From 09c71b26f9cf779e37aca29d5fd82a932d640103 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Thu, 8 Mar 2007 09:48:21 +0000 Subject: [PATCH] warning-- --- STL_Extension/include/CGAL/Nested_iterator.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/STL_Extension/include/CGAL/Nested_iterator.h b/STL_Extension/include/CGAL/Nested_iterator.h index 933fca8eaa5..c587f55858c 100644 --- a/STL_Extension/include/CGAL/Nested_iterator.h +++ b/STL_Extension/include/CGAL/Nested_iterator.h @@ -130,8 +130,10 @@ public: } Nested_iterator(const Self& other) + : Filter_base_iterator(other) { - copy_from(other); + if ( !other.is_end() ) + nested_it_ = other.nested_it_; } Self& operator=(const Self& other)