* @todo use iterators instead of indexes for * faster performance */
| 144 | * faster performance |
| 145 | */ |
| 146 | fc::string path::windows_string()const { |
| 147 | std::string result = _p->generic_string(); |
| 148 | std::replace(result.begin(), result.end(), '/', '\\'); |
| 149 | return result; |
| 150 | } |
| 151 | |
| 152 | fc::string path::string()const { |
| 153 | return _p->string(); |
nothing calls this directly
no test coverage detected