remove explicit copy constructor

This commit is contained in:
Daniel Funke 2015-06-26 17:40:57 +02:00
parent 51eb954081
commit b0eae3bebe
1 changed files with 0 additions and 5 deletions

View File

@ -999,11 +999,6 @@ protected:
: m_dt(dt), m_points(points), m_infos(infos), m_indices(indices), m_tls_hint(tls_hint)
{}
// Constructor
Insert_point_with_info(const Insert_point_with_info &ip)
: m_dt(ip.m_dt), m_points(ip.m_points), m_infos(ip.m_infos), m_indices(ip.m_indices), m_tls_hint(ip.m_tls_hint)
{}
// operator()
void operator()( const tbb::blocked_range<size_t>& r ) const
{