From: ndjinga Date: Wed, 19 Sep 2007 14:20:25 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: trio_trio_coupling~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=296582663bea4fe3bc4cf5fbd2388f83406762d8;p=tools%2Fmedcoupling.git *** empty log message *** --- diff --git a/src/INTERP_KERNEL/3D_Vertex_Less.hxx b/src/INTERP_KERNEL/3D_Vertex_Less.hxx deleted file mode 100644 index 49d57f81a..000000000 --- a/src/INTERP_KERNEL/3D_Vertex_Less.hxx +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef _3D_VERTEX_HXX_ -#define _3D_VERTEX_HXX_ - -namespace MEDMEM -{ - struct Vertex_Less_3D - { - //double * x; - bool operator()(const double * p1,const double * p2) - { - return (*p1 < *p2) - || - ((*p1 == *p2)&&(*(p1+1) < *(p2+1))) - || - ((*p1 == *p2)&&(*(p1+1) == *(p2+1))&&(*(p1+2) < *(p2+2))); - } - }; - - // bool operator()(const double * p1,const double * p2) - -}; -#endif