| 1059 | //! assign integer items by copying when arguments are treated as iterators. See C++ Standard 2003 23.1.1p9 |
| 1060 | template<class I> |
| 1061 | void internal_assign_range(I first, I last, is_integer_tag<true> *) { |
| 1062 | internal_assign_n(static_cast<size_type>(first), &static_cast<T&>(last)); |
| 1063 | } |
| 1064 | //! inline proxy assign by iterators |
| 1065 | template<class I> |
| 1066 | void internal_assign_range(I first, I last, is_integer_tag<false> *) { |
no test coverage detected