diff options
Diffstat (limited to 'sci-libs/neartree/files/2.1.4-iterator.patch')
-rw-r--r-- | sci-libs/neartree/files/2.1.4-iterator.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sci-libs/neartree/files/2.1.4-iterator.patch b/sci-libs/neartree/files/2.1.4-iterator.patch deleted file mode 100644 index 4563ecb8619d..000000000000 --- a/sci-libs/neartree/files/2.1.4-iterator.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff --git a/TNear.h b/TNear.h -index d848b61..a5d255e 100644 ---- a/TNear.h -+++ b/TNear.h -@@ -735,7 +735,7 @@ void BelongsToPoints( const T& t1, const T& t2, ContainerType& group1, Container - { - group1.clear(); - group2.clear(); -- CNearTree<T>::iterator it; -+ typename CNearTree<T>::iterator it; - - for ( it=this->begin( ); it!=this->end( ); ++it ) - { -@@ -756,11 +756,11 @@ void SeparateByRadius( const DistanceType radius, const T& tProbe, ContainerType - { - inside.clear(); - outside.clear(); -- CNearTree<T>::iterator it; -+ typename CNearTree<T>::iterator it; - - for ( it=this->begin( ); it!=this->end( ); ++it ) - { -- if( DistanceBetween( (*it), probe ) > radius ) -+ if( DistanceBetween( (*it), tProbe ) > radius ) - { - inside.insert( inside.end( ), (*it) ); - } |