| 62 | static void ConvertToWindowsSlash(std::string& s); |
| 63 | |
| 64 | static std::string cmVS10EscapeXML(std::string arg) |
| 65 | { |
| 66 | cmSystemTools::ReplaceString(arg, "&", "&"); |
| 67 | cmSystemTools::ReplaceString(arg, "<", "<"); |
| 68 | cmSystemTools::ReplaceString(arg, ">", ">"); |
| 69 | return arg; |
| 70 | } |
| 71 | |
| 72 | static std::string cmVS10EscapeAttr(std::string arg) |
| 73 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…