diff --git a/include/hpp/curve/bezier_curve.h b/include/hpp/curve/bezier_curve.h
index b50e682587a3cf961bb3d3546df13c15900e4c92..8586230da90e796033bdfe98ebeee357953b6fac 100644
--- a/include/hpp/curve/bezier_curve.h
+++ b/include/hpp/curve/bezier_curve.h
@@ -364,6 +364,6 @@ struct bezier_curve : public curve_abc<Time, Numeric, Dim, Safe, Point>
         return bezier_curve_t(ts.begin(), ts.end(),T);
     }
 };
-}
+} // namespace curve
 #endif //_CLASS_BEZIERCURVE
 
diff --git a/include/hpp/curve/bezier_polynom_conversion.h b/include/hpp/curve/bezier_polynom_conversion.h
index 47691088e783936ac48b171b804689766db70516..0a4910842718a5077fb94ee378ddd47524c2b59a 100644
--- a/include/hpp/curve/bezier_polynom_conversion.h
+++ b/include/hpp/curve/bezier_polynom_conversion.h
@@ -67,6 +67,6 @@ Bezier from_polynom(const Polynom& polynom)
     typedef Bezier::cit_point_t    cit_point_t;
     typedef Bezier::bezier_curve_t   bezier_curve_t;
 }*/
-}
+} // namespace curve
 #endif //_BEZIER_POLY_CONVERSION
 
diff --git a/include/hpp/curve/cubic_spline.h b/include/hpp/curve/cubic_spline.h
index ba4ce112e416fe77a4aae110ee5ff22df13bc5ba..9715f16fcd35e59a12819f7bd4600d41d139a48f 100644
--- a/include/hpp/curve/cubic_spline.h
+++ b/include/hpp/curve/cubic_spline.h
@@ -41,6 +41,6 @@ polynom<Time,Numeric,Dim,Safe,Point,T_Point> create_cubic(Point const& a, Point
     T_Point coeffs = make_cubic_vector<Point, T_Point>(a,b,c,d);
     return polynom<Time,Numeric,Dim,Safe,Point,T_Point>(coeffs.begin(),coeffs.end(), min, max);
 }
-}
+} // namespace curve
 #endif //_STRUCT_CUBICSPLINE
 
diff --git a/include/hpp/curve/curve_abc.h b/include/hpp/curve/curve_abc.h
index 16575a94f7804507edf6a509fab525a101068847..72aac2d98a917bad536c2eb129c853f32b5b61b4 100644
--- a/include/hpp/curve/curve_abc.h
+++ b/include/hpp/curve/curve_abc.h
@@ -63,6 +63,6 @@ struct  curve_abc : std::unary_function<Time, Point>
 /*Helpers*/
 
 	};
-}
+} // namespace curve
 #endif //_STRUCT_CURVE_ABC
 
diff --git a/include/hpp/curve/curve_constraint.h b/include/hpp/curve/curve_constraint.h
index 6207aca040a72bd35de652ebdedf51cc3edd43c4..5b4e8efc9b82d2c3e097dd3675aa41bef8f286e8 100644
--- a/include/hpp/curve/curve_constraint.h
+++ b/include/hpp/curve/curve_constraint.h
@@ -32,5 +32,5 @@ struct curve_constraints
     point_t end_vel;
     point_t end_acc;
 };
-}
+} // namespace curve
 #endif //_CLASS_CUBICZEROVELACC
diff --git a/include/hpp/curve/exact_cubic.h b/include/hpp/curve/exact_cubic.h
index 6e30d296af24cd30abafb87f10d9b48ec9ac344e..d71cfa0ff6ce132c5ae4b8e5e6b9855ff2b97edb 100644
--- a/include/hpp/curve/exact_cubic.h
+++ b/include/hpp/curve/exact_cubic.h
@@ -198,6 +198,6 @@ struct exact_cubic : public curve_abc<Time, Numeric, Dim, Safe, Point>
     t_spline_t subSplines_; // const
 	/*Attributes*/
 };
-}
+} // namespace curve
 #endif //_CLASS_EXACTCUBIC
 
diff --git a/include/hpp/curve/polynom.h b/include/hpp/curve/polynom.h
index 635b4901900b4abab46c2026f244a19a3d468f95..2aca2fed9d47429c5e3c221343985bbdd283dc67 100644
--- a/include/hpp/curve/polynom.h
+++ b/include/hpp/curve/polynom.h
@@ -199,6 +199,6 @@ struct polynom : public curve_abc<Time, Numeric, Dim, Safe, Point>
         return res;
     }
 }; //class polynom
-}
+} // namespace curve
 #endif //_STRUCT_POLYNOM
 
diff --git a/include/hpp/curve/quintic_spline.h b/include/hpp/curve/quintic_spline.h
index a6604fcbb4348a05e2f58f9e7cf88b019d1825b7..31f6bf98303ccfa27e10a102070c4d98f7c7f079 100644
--- a/include/hpp/curve/quintic_spline.h
+++ b/include/hpp/curve/quintic_spline.h
@@ -43,6 +43,6 @@ polynom<Time,Numeric,Dim,Safe,Point,T_Point> create_quintic(Point const& a, Poin
     T_Point coeffs = make_quintic_vector<Point, T_Point>(a,b,c,d,e,f);
     return polynom<Time,Numeric,Dim,Safe,Point,T_Point>(coeffs.begin(),coeffs.end(), min, max);
 }
-}
+} // namespace curve
 #endif //_STRUCT_QUINTIC_SPLINE
 
diff --git a/include/hpp/curve/spline_deriv_constraint.h b/include/hpp/curve/spline_deriv_constraint.h
index f80de288a1ade0cc7c9f6ea873e0a14fd77b47af..9c2ed3ecefbb00366dde13767fe5081c064b4981 100644
--- a/include/hpp/curve/spline_deriv_constraint.h
+++ b/include/hpp/curve/spline_deriv_constraint.h
@@ -137,6 +137,6 @@ struct spline_deriv_constraint : public exact_cubic<Time, Numeric, Dim, Safe, Po
     private:
     /* Constructors - destructors */
 };
-}
+} // namespace curve
 #endif //_CLASS_CUBICZEROVELACC
 
diff --git a/python/spline_python.cpp b/python/spline_python.cpp
index e2c269c876411452dfd1fb6249992d24f2d56c48..03061a8ff64145b747c4f65940644bbe6fc3dbc9 100644
--- a/python/spline_python.cpp
+++ b/python/spline_python.cpp
@@ -320,4 +320,4 @@ BOOST_PYTHON_MODULE(curves)
 
 }
 
-} // namespace spline
+} // namespace curve