|
1082 | 1082 |
|
1083 | 1083 | // \ref{tuple.cnstr}, \tcode{tuple} construction |
1084 | 1084 | constexpr tuple(); |
1085 | | - explicit constexpr tuple(const Types&...); |
| 1085 | + constexpr explicit tuple(const Types&...); |
1086 | 1086 | template <class... UTypes> |
1087 | | - explicit constexpr tuple(UTypes&&...); |
| 1087 | + constexpr explicit tuple(UTypes&&...); |
1088 | 1088 |
|
1089 | 1089 | tuple(const tuple&) = default; |
1090 | 1090 | tuple(tuple&&) = default; |
|
1174 | 1174 |
|
1175 | 1175 | \indexlibrary{\idxcode{tuple}!constructor}% |
1176 | 1176 | \begin{itemdecl} |
1177 | | -explicit constexpr tuple(const Types&...); |
| 1177 | +constexpr explicit tuple(const Types&...); |
1178 | 1178 | \end{itemdecl} |
1179 | 1179 |
|
1180 | 1180 | \begin{itemdescr} |
|
1189 | 1189 | \indexlibrary{\idxcode{tuple}!constructor}% |
1190 | 1190 | \begin{itemdecl} |
1191 | 1191 | template <class... UTypes> |
1192 | | - explicit constexpr tuple(UTypes&&... u); |
| 1192 | + constexpr explicit tuple(UTypes&&... u); |
1193 | 1193 | \end{itemdecl} |
1194 | 1194 |
|
1195 | 1195 | \begin{itemdescr} |
|
8136 | 8136 | template <class Predicate> |
8137 | 8137 | class unary_negate { |
8138 | 8138 | public: |
8139 | | - explicit constexpr unary_negate(const Predicate& pred); |
| 8139 | + constexpr explicit unary_negate(const Predicate& pred); |
8140 | 8140 | constexpr bool operator()(const typename Predicate::argument_type& x) const; |
8141 | 8141 | typedef typename Predicate::argument_type argument_type; |
8142 | 8142 | typedef bool result_type; |
|
8165 | 8165 | template <class Predicate> |
8166 | 8166 | class binary_negate { |
8167 | 8167 | public: |
8168 | | - explicit constexpr binary_negate(const Predicate& pred); |
| 8168 | + constexpr explicit binary_negate(const Predicate& pred); |
8169 | 8169 | constexpr bool operator()(const typename Predicate::first_argument_type& x, |
8170 | 8170 | const typename Predicate::second_argument_type& y) const; |
8171 | 8171 | typedef typename Predicate::first_argument_type first_argument_type; |
|
0 commit comments