| 62 | static std::map<std::string, std::vector<cmIDEFlagTable>> loadedFlagJsonFiles; |
| 63 | |
| 64 | static void ConvertToWindowsSlashes(std::string& s) |
| 65 | { |
| 66 | // first convert all of the slashes |
| 67 | for (auto& ch : s) { |
| 68 | if (ch == '/') { |
| 69 | ch = '\\'; |
| 70 | } |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | cmGlobalVisualStudio10Generator::cmGlobalVisualStudio10Generator( |
| 75 | cmake* cm, std::string const& name) |
no outgoing calls
no test coverage detected
searching dependent graphs…