mirror of https://github.com/CGAL/cgal
Remove extra ';'
This commit is contained in:
parent
42d3fa3562
commit
0a11128fc8
|
|
@ -9,7 +9,7 @@ public:
|
|||
Notifier(): data_(0){}
|
||||
|
||||
typedef CGAL::Kinetic::Ref_counted<Notifier> Base;
|
||||
CGAL_KINETIC_LISTENER1(DATA_CHANGED);
|
||||
CGAL_KINETIC_LISTENER1(DATA_CHANGED)
|
||||
public:
|
||||
|
||||
int data() const {return data_;}
|
||||
|
|
@ -28,7 +28,7 @@ template <class Data>
|
|||
class Receiver: public CGAL::Kinetic::Ref_counted<Receiver<Data> > {
|
||||
typedef Receiver<Data> This;
|
||||
typedef ::Notifier<Data> Notifier;
|
||||
CGAL_KINETIC_LISTEN1(Notifier, DATA_CHANGED, ping());
|
||||
CGAL_KINETIC_LISTEN1(Notifier, DATA_CHANGED, ping())
|
||||
public:
|
||||
Receiver( Notifier* p){
|
||||
CGAL_KINETIC_INIT_LISTEN(Notifier, p);
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ struct Trivial_kds: CGAL::Kinetic::Ref_counted<Trivial_kds<Traits> >
|
|||
typedef typename Traits::Simulator::Time Time;
|
||||
typedef typename Traits::Active_points_1_table::Key Point_key;
|
||||
typedef typename Traits::Simulator::Event_key Event_key;
|
||||
CGAL_KINETIC_DECLARE_LISTENERS(typename Traits::Simulator, typename Traits::Active_points_1_table);
|
||||
CGAL_KINETIC_DECLARE_LISTENERS(typename Traits::Simulator, typename Traits::Active_points_1_table)
|
||||
public:
|
||||
typedef Trivial_event<Point, Time, This> Event;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue