Fixing signed/unsigned comparisons

This commit is contained in:
DennisOSRM
2012-12-23 19:34:26 +01:00
parent cba3c46820
commit bf94866ec0
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ struct RouteParameters {
bool geometry;
bool compression;
bool deprecatedAPI;
int checkSum;
unsigned checkSum;
std::string service;
std::string outputFormat;
std::string jsonpParameter;
@@ -58,7 +58,7 @@ struct RouteParameters {
deprecatedAPI = true;
}
void setChecksum(const int c) {
void setChecksum(const unsigned c) {
checkSum = c;
}