Missing "dummy function" for the sequential case

This commit is contained in:
Clement Jamin 2013-04-03 17:35:24 +02:00
parent 1cc98e9abd
commit ef756afafd
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,7 @@ protected:
Triangulation_3_base() {}
Triangulation_3_base(Lock_data_structure *) {}
void swap(Triangulation_3_base<Concurrency_tag, Lock_data_structure_> &tr){}
public:
@ -130,6 +131,11 @@ public:
}
// LOCKS (no-op functions)
template <typename Point_3>
bool try_lock_point(const Point_3 &p, int = 0) const
{ return true; }
template <typename Vertex_handle>
bool try_lock_vertex(const Vertex_handle &, int = 0) const
{ return true; }