URL:
https://svn.lrde.epita.fr/svn/oln/branches/cleanup-2008/milena
ChangeLog:
2008-09-09 Guillaume Lazzara <z(a)lrde.epita.fr>
Remove useless '_' in class names.
* mln/core/alias/box3d.hh: remove underscore to box_.
* mln/core/alias/dpoint3d.hh: remove underscore to dpoint_.
* mln/core/alias/point3d.hh: remove underscore to point_.
---
box3d.hh | 2 +-
dpoint3d.hh | 2 +-
point3d.hh | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Index: branches/cleanup-2008/milena/mln/core/alias/dpoint3d.hh
===================================================================
--- branches/cleanup-2008/milena/mln/core/alias/dpoint3d.hh (revision 2206)
+++ branches/cleanup-2008/milena/mln/core/alias/dpoint3d.hh (revision 2207)
@@ -44,7 +44,7 @@
/*! \brief Type alias for a delta-point defined on the 3D square
* grid with integer coordinates.
*/
- typedef dpoint_<mln::grid::cube, int> dpoint3d;
+ typedef dpoint<mln::grid::cube, int> dpoint3d;
} // end of namespace mln
Index: branches/cleanup-2008/milena/mln/core/alias/box3d.hh
===================================================================
--- branches/cleanup-2008/milena/mln/core/alias/box3d.hh (revision 2206)
+++ branches/cleanup-2008/milena/mln/core/alias/box3d.hh (revision 2207)
@@ -46,7 +46,7 @@
*
* \see mln::win::rectangle3d.
*/
- typedef box_<point3d> box3d;
+ typedef box<point3d> box3d;
} // end of namespace mln
Index: branches/cleanup-2008/milena/mln/core/alias/point3d.hh
===================================================================
--- branches/cleanup-2008/milena/mln/core/alias/point3d.hh (revision 2206)
+++ branches/cleanup-2008/milena/mln/core/alias/point3d.hh (revision 2207)
@@ -43,7 +43,7 @@
/*! \brief Type alias for a point defined on the 3D square grid with
* integer coordinates.
*/
- typedef point_<grid::cube, def::coord> point3d;
+ typedef point<grid::cube, def::coord> point3d;
} // end of namespace mln