MCPcopy Create free account
hub / github.com/Kitware/CMake / ConvertToWindowsSlash

Function ConvertToWindowsSlash

Source/cmVisualStudio10TargetGenerator.cxx:1985–1993  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1983}
1984
1985static void ConvertToWindowsSlash(std::string& s)
1986{
1987 // first convert all of the slashes
1988 for (auto& ch : s) {
1989 if (ch == '/') {
1990 ch = '\\';
1991 }
1992 }
1993}
1994
1995void cmVisualStudio10TargetGenerator::WriteGroups()
1996{

Callers 15

WriteDotNetReferencesMethod · 0.85
WriteImportsMethod · 0.85
WriteCustomRuleMethod · 0.85
WriteCustomRuleCppMethod · 0.85
WriteGroupsMethod · 0.85
WriteGroupSourcesMethod · 0.85
WriteSourceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…