aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common.h b/common.h
index c028ee4..d222738 100644
--- a/common.h
+++ b/common.h
@@ -45,25 +45,25 @@ namespace flask
};
template<>
- int64_t routing_params::get<int64_t>(unsigned index) const
+ inline int64_t routing_params::get<int64_t>(unsigned index) const
{
return int_params[index];
}
template<>
- uint64_t routing_params::get<uint64_t>(unsigned index) const
+ inline uint64_t routing_params::get<uint64_t>(unsigned index) const
{
return uint_params[index];
}
template<>
- double routing_params::get<double>(unsigned index) const
+ inline double routing_params::get<double>(unsigned index) const
{
return double_params[index];
}
template<>
- std::string routing_params::get<std::string>(unsigned index) const
+ inline std::string routing_params::get<std::string>(unsigned index) const
{
return string_params[index];
}