aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAntony Woods <acron1@gmail.com>2014-09-23 21:02:26 +0100
committerAntony Woods <acron1@gmail.com>2014-09-23 21:02:26 +0100
commit6890436742c89a01d00f26f796becb5e81c26e0b (patch)
tree08f91835011079fa492b0dc224ac524642a2a406 /include
parent54fb4fa3d4ceecb2b44c1bf8c64022d71549f273 (diff)
downloadcrow-6890436742c89a01d00f26f796becb5e81c26e0b.tar.gz
crow-6890436742c89a01d00f26f796becb5e81c26e0b.zip
Fixed sign comparisson warning
Diffstat (limited to 'include')
-rw-r--r--include/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/parser.h b/include/parser.h
index bda4594..00bb155 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -40,7 +40,7 @@ namespace crow
const char param_delimiter = '=';
ci_map ret;
- int qMarkPos = url.find("?");
+ unsigned int qMarkPos = url.find("?");
if(!(qMarkPos >=0 && qMarkPos != (url.length()-1))) {
return ret;
}