fix missing qualifier
This commit is contained in:
parent
9f27706e81
commit
0aab8c0944
1 changed files with 1 additions and 2 deletions
|
@ -41,13 +41,12 @@ enum eGeomType {
|
|||
};
|
||||
|
||||
template <typename T, template <typename> class Container=vertex_vector>
|
||||
class geometry : private::noncopyable
|
||||
class geometry : private::boost::noncopyable
|
||||
{
|
||||
public:
|
||||
typedef T coord_type;
|
||||
typedef Container<coord_type> container_type;
|
||||
typedef typename container_type::value_type value_type;
|
||||
|
||||
private:
|
||||
container_type cont_;
|
||||
eGeomType type_;
|
||||
|
|
Loading…
Add table
Reference in a new issue