File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1976,15 +1976,15 @@ struct iterator_access {
1976
1976
}
1977
1977
};
1978
1978
1979
- template <typename Iterator, typename ResultType = decltype ((( *std::declval<Iterator>()).first ) ) >
1979
+ template <typename Iterator, typename ResultType = decltype ((*std::declval<Iterator>()).first ) >
1980
1980
struct iterator_key_access {
1981
1981
using result_type = ResultType;
1982
1982
result_type operator ()(Iterator &it) const {
1983
1983
return (*it).first ;
1984
1984
}
1985
1985
};
1986
1986
1987
- template <typename Iterator, typename ResultType = decltype ((( *std::declval<Iterator>()).second ) )>
1987
+ template <typename Iterator, typename ResultType = decltype ((*std::declval<Iterator>()).second )>
1988
1988
struct iterator_value_access {
1989
1989
using result_type = ResultType;
1990
1990
result_type operator ()(Iterator &it) const {
You can’t perform that action at this time.
0 commit comments