1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix link error in VC++

This commit is contained in:
bolero-MURAKAMI 2016-03-08 18:22:38 +09:00
parent cb801ffef8
commit 8e24d4551c
7 changed files with 47 additions and 30 deletions

View file

@ -301,7 +301,7 @@ namespace sprout {
}
template<sprout::index_t... Indexes>
SPROUT_CONSTEXPR std::tuple<Types...>
to_std_tuple(sprout::index_tuple<Indexes...>) {
to_std_tuple(sprout::index_tuple<Indexes...>) const {
return std::tuple<Types...>(base_type::template get<Indexes>(*this)...);
}
public: