stray const keyword removed that prevented build

This commit is contained in:
DennisOSRM
2013-01-06 17:58:02 +01:00
parent 764fe533e8
commit 864c2d9f49
+1 -1
View File
@@ -74,7 +74,7 @@ struct Reply {
std::string content;
static Reply stockReply(status_type status);
void setSize(const unsigned size) {
BOOST_FOREACH (const Header& h, headers) {
BOOST_FOREACH ( Header& h, headers) {
if("Content-Length" == h.name) {
std::string sizeString;
intToString(size,h.value );