aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-04-15 01:43:25 +0900
committeripknHama <ipknhama@gmail.com>2014-04-15 01:43:25 +0900
commit86346f211fc5ae49767656883bbf9483e11da46e (patch)
tree560693b59f5cea465ac74efb2d0c1f41269b212a
parent53debf7e2cb494d8ea89205812bf792e8e9354da (diff)
downloadcrow-86346f211fc5ae49767656883bbf9483e11da46e.tar.gz
crow-86346f211fc5ae49767656883bbf9483e11da46e.zip
fix compile flag (1y->11, O2) optimize needless vector bound check
-rw-r--r--Makefile4
-rw-r--r--common.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 012b488..51ccf65 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
all: example
# unittest
-example: example.cpp flask.h http_server.h http_connection.h parser.h http_response.h routing.h
- g++ -Wall -g -std=c++1y -o example example.cpp http-parser/http_parser.c -pthread -lboost_system -lboost_thread -I http-parser/
+example: example.cpp flask.h http_server.h http_connection.h parser.h http_response.h routing.h common.h
+ g++ -Wall -g -O2 -std=c++11 -o example example.cpp http-parser/http_parser.c -pthread -lboost_system -lboost_thread -I http-parser/
test: example
pkill example || exit 0
./example &
diff --git a/common.h b/common.h
index 1699b07..db55e8e 100644
--- a/common.h
+++ b/common.h
@@ -32,24 +32,24 @@ namespace flask
template<>
int64_t routing_params::get<int64_t>(unsigned index) const
{
- return int_params.at(index);
+ return int_params[index];
}
template<>
uint64_t routing_params::get<uint64_t>(unsigned index) const
{
- return uint_params.at(index);
+ return uint_params[index];
}
template<>
double routing_params::get<double>(unsigned index) const
{
- return double_params.at(index);
+ return double_params[index];
}
template<>
std::string routing_params::get<std::string>(unsigned index) const
{
- return string_params.at(index);
+ return string_params[index];
}
}