cmExtraEclipseCDT4Generator: use std::replace.

This commit is contained in:
Daniel Pfeifer 2016-05-24 23:06:56 +02:00
parent 34bc6e1f3b
commit 2a1a2033af
1 changed files with 1 additions and 5 deletions

View File

@ -435,11 +435,7 @@ void cmExtraEclipseCDT4Generator::WriteGroups(
linkName3 += "/";
linkName3 += sgIt->GetFullName();
size_t pos = 0;
while ((pos = linkName3.find("\\", pos)) != std::string::npos) {
linkName3.replace(pos, 1, "/");
pos++;
}
std::replace(linkName3.begin(), linkName3.end(), '\\', '/');
this->AppendLinkedResource(xml, linkName3, "virtual:/virtual",
VirtualFolder);