Updated Guidelines for Developers (markdown)

Adam Wulkiewicz 2014-05-24 03:54:11 -07:00
parent a11f5935a4
commit cd9cb072f9

@ -206,8 +206,8 @@ struct foo
template <typename Point>
inline int foo(Point const& point)
{
// Checking if the geometry type fulfils the concept should be done as early as possible,
// so in the first entry point
// Checking if the geometry type fulfils the concept should be done
// as early as possible, so in the first entry point
concept::check<Point const>();
return dispatch::foo<Point>::apply(point);