From 0a11128fc88349b97c3a0f9bc98afaee4067c59e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 23 Aug 2010 13:33:54 +0000 Subject: [PATCH] Remove extra ';' --- .../examples/Kinetic_framework/listener.cpp | 4 ++-- .../examples/Kinetic_framework/trivial_kds.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Kinetic_data_structures/examples/Kinetic_framework/listener.cpp b/Kinetic_data_structures/examples/Kinetic_framework/listener.cpp index 82be57f6e89..9cb6a3717e3 100644 --- a/Kinetic_data_structures/examples/Kinetic_framework/listener.cpp +++ b/Kinetic_data_structures/examples/Kinetic_framework/listener.cpp @@ -9,7 +9,7 @@ public: Notifier(): data_(0){} typedef CGAL::Kinetic::Ref_counted Base; - CGAL_KINETIC_LISTENER1(DATA_CHANGED); + CGAL_KINETIC_LISTENER1(DATA_CHANGED) public: int data() const {return data_;} @@ -28,7 +28,7 @@ template class Receiver: public CGAL::Kinetic::Ref_counted > { typedef Receiver This; typedef ::Notifier 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); diff --git a/Kinetic_data_structures/examples/Kinetic_framework/trivial_kds.cpp b/Kinetic_data_structures/examples/Kinetic_framework/trivial_kds.cpp index 51d25f319b2..b86b9052cf0 100644 --- a/Kinetic_data_structures/examples/Kinetic_framework/trivial_kds.cpp +++ b/Kinetic_data_structures/examples/Kinetic_framework/trivial_kds.cpp @@ -56,7 +56,7 @@ struct Trivial_kds: CGAL::Kinetic::Ref_counted > 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 Event;