forgot a couple of std::

This commit is contained in:
Paolo Cignoni 2009-01-13 06:33:53 +00:00
parent 017d27dc36
commit fdf4e402f3
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ namespace vcg{
// hashing function
struct HashFunctor : public unary_function<Point3i, size_t>
struct HashFunctor : public std::unary_function<Point3i, size_t>
{
size_t operator()(const Point3i &p) const
{
@ -202,7 +202,7 @@ namespace vcg{
///return the simplexes on a specified cell
void Grid( const Point3i & _c, CellIterator & first, CellIterator & end )
{
pair<HashIterator,HashIterator> CellRange = hash_table.equal_range(_c);
std::pair<HashIterator,HashIterator> CellRange = hash_table.equal_range(_c);
first.t=CellRange.first;
end.t=CellRange.second;
}