mirror of https://github.com/CGAL/cgal
try workaround warnings
This commit is contained in:
parent
4d797b55c4
commit
8bbbf8d494
|
|
@ -356,8 +356,7 @@ public:
|
||||||
const OuterFunctor& outer)
|
const OuterFunctor& outer)
|
||||||
: _inner(inner), _outer(outer) {}
|
: _inner(inner), _outer(outer) {}
|
||||||
|
|
||||||
Unary_compose(const Unary_compose& other)
|
Unary_compose(const Unary_compose& other) = default;
|
||||||
: _inner(other._inner), _outer(other._outer) {}
|
|
||||||
|
|
||||||
Unary_compose() : _inner(::boost::none),_outer(::boost::none) {}
|
Unary_compose() : _inner(::boost::none),_outer(::boost::none) {}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1147,8 +1147,7 @@ public:
|
||||||
Bitstream_descartes() : Base(new Rep()) {}
|
Bitstream_descartes() : Base(new Rep()) {}
|
||||||
|
|
||||||
//! Copy constructor
|
//! Copy constructor
|
||||||
Bitstream_descartes(const Self& other) : Base(static_cast<const Base&>(other))
|
Bitstream_descartes(const Self& other) = default;
|
||||||
{}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Constructor for a polynomial \c f
|
* \brief Constructor for a polynomial \c f
|
||||||
|
|
|
||||||
|
|
@ -35,10 +35,7 @@ public:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
AABB_segment_2_primitive(const AABB_segment_2_primitive &primitive)
|
AABB_segment_2_primitive(const AABB_segment_2_primitive &primitive) = default;
|
||||||
{
|
|
||||||
m_it = primitive.id();
|
|
||||||
}
|
|
||||||
|
|
||||||
const Id &id() const
|
const Id &id() const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -30,10 +30,7 @@ class SNC_SM_explorer : public SMCDEC {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SNC_SM_explorer(const Base& E) : Base(E) {}
|
SNC_SM_explorer(const Base& E) : Base(E) {}
|
||||||
Self& operator=(const Self& E) {
|
Self& operator=(const Self& E) = default;
|
||||||
Base::operator=(E);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} //namespace CGAL
|
} //namespace CGAL
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue