code cleanup

This commit is contained in:
DennisOSRM 2011-12-17 22:01:40 +01:00
parent 83e160d14d
commit 5ef4909bdd

View File

@ -38,12 +38,10 @@ struct NodeCoords {
int lon;
NodeT id;
static NodeCoords<NodeT> min_value()
{
static NodeCoords<NodeT> min_value() {
return NodeCoords<NodeT>(-90*100000,-180*100000,numeric_limits<NodeT>::min());
}
static NodeCoords<NodeT> max_value()
{
static NodeCoords<NodeT> max_value() {
return NodeCoords<NodeT>(90*100000, 180*100000, numeric_limits<NodeT>::max());
}