| 914 | |
| 915 | template <typename T> |
| 916 | void CopyOrMoveBlock(const T* b, const T* e, T* t) { |
| 917 | std::copy(b, e, t); |
| 918 | } |
| 919 | template <> |
| 920 | void CopyOrMoveBlock(const tstring* b, const tstring* e, tstring* t) { |
| 921 | std::move(b, e, t); |
no test coverage detected