Make SConscript work with eclipse plugin

This commit is contained in:
Dennis Luxen
2010-07-21 15:29:41 +00:00
parent 13a88e712f
commit 681f3c46e7
2 changed files with 2 additions and 72 deletions
+2 -2
View File
@@ -28,9 +28,9 @@ or see http://www.gnu.org/licenses/agpl.txt.
template<typename NodeT>
struct NodeCoords {
typedef unsigned key_type;
typedef unsigned key_type; //type of NodeID
typedef int value_type; //type of lat,lons
typedef int value_type;
NodeCoords(int _lat, int _lon, NodeT _id) : lat(_lat), lon(_lon), id(_id) {}
NodeCoords() : lat(UINT_MAX), lon(UINT_MAX), id(UINT_MAX) {}
int lat;