Changed geometry and vertex_vector2 back to inherit from boost::noncopyable. Thought that Karma would require them to be copyable.

This commit is contained in:
Carlos López 2010-07-26 06:19:50 +00:00
parent f44333fa4e
commit 853d55b7d6
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ enum GeomType {
};
template <typename T>
class geometry //: private boost::noncopyable
class geometry : private boost::noncopyable
{
public:
typedef T vertex_type;

View file

@ -140,7 +140,7 @@ private:
};
template <typename T>
struct vertex_vector2 //: boost::noncopyable
struct vertex_vector2 : boost::noncopyable
{
typedef typename T::type value_type;
typedef boost::tuple<value_type,value_type,char> vertex_type;