~ubuntu-branches/debian/stretch/cgal/stretch

« back to all changes in this revision

Viewing changes to include/CGAL/Circular_kernel_2/Circular_arc_point_2.h

  • Committer: Package Import Robot
  • Author(s): Joachim Reichel
  • Date: 2014-04-05 10:56:43 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140405105643-jgnrpu2thtx23zfs
Tags: 4.4-1
* New upstream release.
* Remove patches do-not-link-example-with-qt4-support-library.patch and
  fix_jet_fitting_3.patch (applied upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
#include <iostream>
30
30
#include <CGAL/Bbox_2.h>
31
 
#include <CGAL/Handle.h> // for identical()
32
31
#include <CGAL/Interval_nt.h>
33
32
#include <boost/type_traits/is_same.hpp>
34
33
 
125
124
    if(this != &c)
126
125
    {
127
126
      this->P_point::operator=(c);
 
127
 
 
128
      if (bb != NULL){ 
 
129
        delete bb;
 
130
      }
128
131
      bb = c.bb ? new Bbox_2(*(c.bb)) : NULL;
129
132
    }
130
133
    return *this;