diff --git a/Kinetic_data_structures/include/CGAL/Tools/Counter.h b/Kinetic_data_structures/include/CGAL/Tools/Counter.h index f7e6c585b14..d1fc02f47a5 100644 --- a/Kinetic_data_structures/include/CGAL/Tools/Counter.h +++ b/Kinetic_data_structures/include/CGAL/Tools/Counter.h @@ -18,13 +18,15 @@ // // Author(s) : Daniel Russel -#ifndef DSR_COUNTER_H -#define DSR_COUNTER_H +#ifndef CGAL_DSR_COUNTER_H +#define CGAL_DSR_COUNTER_H + #include #include #include -CGAL_BEGIN_NAMESPACE; +CGAL_BEGIN_NAMESPACE + //! An integer iterator /*! It looks like an iterator but just wraps an integer. All the expected iterator operations are supported (namely operator* and @@ -169,6 +171,6 @@ Counter counter(T t) return Counter(t); } +CGAL_END_NAMESPACE -CGAL_END_NAMESPACE; #endif