| 882 | } |
| 883 | |
| 884 | string ApplicationPathSeparators(const string& v) { |
| 885 | size_t slash_pos = 0; |
| 886 | string res = v; |
| 887 | |
| 888 | while ((slash_pos = res.find_first_of('\\')) != string::npos) { |
| 889 | res[slash_pos] = '/'; |
| 890 | } |
| 891 | |
| 892 | return res; |
| 893 | } |
| 894 | |
| 895 | void ApplicationPathSeparators(char* string) { |
| 896 | for (int i = 0; string[i] != '\0'; i++) { |
no outgoing calls
no test coverage detected