fixed wrong pointer type in EHAdj class

This commit is contained in:
Paolo Cignoni 2010-04-26 15:02:04 +00:00
parent 7bd30d3ca0
commit 4a4039f138
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ public:
static void Name(std::vector<std::string> & name){name.push_back(std::string("EHAdj"));T::Name(name);}
private:
typename T::EdgePointer _hp ;
typename T::HEdgePointer _hp ;
};
/*----------------------------- ETADJ ------------------------------*/