| 243 | |
| 244 | template <int RT> |
| 245 | bool operator<=( const string_proxy<RT>& lhs, const string_proxy<RT>& rhs) { |
| 246 | return strcmp( |
| 247 | const_cast<char *>(lhs.begin() ), |
| 248 | const_cast<char *>(rhs.begin()) |
| 249 | ) <= 0 ; |
| 250 | } |
| 251 | |
| 252 | template<int RTYPE, template <class> class StoragePolicy> std::string string_proxy<RTYPE, StoragePolicy>::buffer ; |
| 253 |