| 2148 | |
| 2149 | template<typename Container, typename T> |
| 2150 | constexpr void move_back(Container & c, T && x, bool gen_attrs) |
| 2151 | { |
| 2152 | if (!gen_attrs) |
| 2153 | return; |
| 2154 | detail::move_back_impl(c, (T &&)x); |
| 2155 | } |
| 2156 | |
| 2157 | template<typename Container> |
| 2158 | constexpr void move_back(Container & c, Container & x, bool gen_attrs) |