Remove extra ';'

This commit is contained in:
Andreas Fabri 2010-08-23 13:33:54 +00:00
parent 42d3fa3562
commit 0a11128fc8
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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;