removed harmless warning

This commit is contained in:
Paolo Cignoni 2009-06-23 20:45:06 +00:00
parent 60afe72ca8
commit c534298f2f
1 changed files with 2 additions and 2 deletions

View File

@ -284,8 +284,8 @@ private:
/*----------------------------- EEADJ ------------------------------*/ /*----------------------------- EEADJ ------------------------------*/
template <class T> class EmptyEEAdj: public T { template <class T> class EmptyEEAdj: public T {
public: public:
typename T::EdgePointer &EEp(const int & i ) { static typename T::EdgePointer ep=0; assert(0); return ep; } typename T::EdgePointer &EEp(const int & ) { static typename T::EdgePointer ep=0; assert(0); return ep; }
typename T::EdgePointer cEEp(const int & i) { static typename T::EdgePointer ep=0; assert(0); return ep; } typename T::EdgePointer cEEp(const int & ) { static typename T::EdgePointer ep=0; assert(0); return ep; }
int &EEi(){static int z=0; return z;}; int &EEi(){static int z=0; return z;};
template < class LeftV> template < class LeftV>
void ImportLocal(const LeftV & left ) { T::ImportLocal( left); } void ImportLocal(const LeftV & left ) { T::ImportLocal( left); }