+BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS(cs::cartesian);
+
// Small QRect simulations following http://doc.trolltech.com/4.4/qrect.html
// Todo: once work the traits out further, would be nice if there is a real example of this.
diff --git a/example/c02_custom_box_example.cpp b/example/c02_custom_box_example.cpp
index 5d6d74e6b..a335781d4 100644
--- a/example/c02_custom_box_example.cpp
+++ b/example/c02_custom_box_example.cpp
@@ -53,7 +53,7 @@ struct my_box_t
BOOST_GEOMETRY_REGISTER_POINT_2D(my_point, double, cs::cartesian, x, y)
BOOST_GEOMETRY_REGISTER_POINT_2D(my_int_point, int, cs::cartesian, x, y)
BOOST_GEOMETRY_REGISTER_BOX(my_box, my_point, ll, ur)
-BOOST_GEOMETRY_REGISTER_BOX_TEMPLATIZED(my_box_t, ll, ur)
+BOOST_GEOMETRY_REGISTER_BOX_TEMPLATED(my_box_t, ll, ur)
BOOST_GEOMETRY_REGISTER_BOX_2D_4VALUES(my_box_ltrb, my_int_point, left, top, right, bottom)
BOOST_GEOMETRY_REGISTER_BOX_2D_4VALUES(my_box_4, my_point, coors[0], coors[1], coors[2], coors[3])
diff --git a/example/c04_b_custom_triangle_example.cpp b/example/c04_b_custom_triangle_example.cpp
index af06b3068..6721593d4 100644
--- a/example/c04_b_custom_triangle_example.cpp
+++ b/example/c04_b_custom_triangle_example.cpp
@@ -30,9 +30,11 @@ struct triangle : public boost::array
{
};
-// Register triangle
-BOOST_GEOMETRY_REGISTER_RING_TEMPLATIZED(triangle)
+// Register triangle
as a ring
+namespace boost { namespace geometry {
+template struct tag > { typedef ring_tag type; }
+}}
namespace boost { namespace geometry { namespace dispatch {
diff --git a/test/test_geometries/custom_segment.hpp b/test/test_geometries/custom_segment.hpp
index 413138a63..a0d43ed53 100644
--- a/test/test_geometries/custom_segment.hpp
+++ b/test/test_geometries/custom_segment.hpp
@@ -51,7 +51,7 @@ struct custom_segment_4
BOOST_GEOMETRY_REGISTER_POINT_2D(test::custom_point_for_segment, double, cs::cartesian, x, y)
BOOST_GEOMETRY_REGISTER_SEGMENT(test::custom_segment, test::custom_point_for_segment, one, two)
-BOOST_GEOMETRY_REGISTER_SEGMENT_TEMPLATIZED(test::custom_segment_of, p1, p2)
+BOOST_GEOMETRY_REGISTER_SEGMENT_TEMPLATED(test::custom_segment_of, p1, p2)
BOOST_GEOMETRY_REGISTER_SEGMENT_2D_4VALUES(test::custom_segment_4, test::custom_point_for_segment, a, b, c, d)