Adding a std:: to size_t because it makes the parser more happy

This commit is contained in:
DennisOSRM 2012-04-14 17:42:09 +02:00
parent 60ffe55565
commit 539199a7e9

View File

@ -45,7 +45,7 @@ struct NodeCoords {
return NodeCoords<NodeT>(90*100000, 180*100000, numeric_limits<NodeT>::max());
}
value_type operator[](size_t n) const {
value_type operator[](std::size_t n) const {
switch(n) {
case 1:
return lat;