Index: doc/gtl_custom_point.htm =================================================================== --- doc/gtl_custom_point.htm (Revision 82821) +++ doc/gtl_custom_point.htm (Arbeitskopie) @@ -97,6 +97,8 @@ template <>
    struct point_mutable_traits<CPoint> {
        +typedef int coordinate_type;

    +    static inline void set(CPoint& point, orientation_2d orient, int value) {
            Index: doc/gtl_point_concept.htm =================================================================== --- doc/gtl_point_concept.htm (Revision 82821) +++ doc/gtl_point_concept.htm (Arbeitskopie) @@ -117,6 +117,8 @@
template <typename T>
struct point_mutable_traits {
+     typedef typename T::coordinate_type coordinate_type;
+
     static void set(T& point, orientation_2d orient, typename point_traits<T>::coordinate_type value) {
          point.set(orient, value);