| 698 | |
| 699 | template<typename CharT1, typename CharT2> |
| 700 | inline void |
| 701 | assign_op( std::basic_string<CharT1>& target, basic_cstring<CharT2> src, int ) |
| 702 | { |
| 703 | target.assign( src.begin(), src.size() ); |
| 704 | } |
| 705 | |
| 706 | //____________________________________________________________________________// |
| 707 |
no test coverage detected