| 1736 | } |
| 1737 | |
| 1738 | std::string cmGlobalVisualStudio10Generator::CanonicalToolsetName( |
| 1739 | std::string const& toolset) const |
| 1740 | { |
| 1741 | std::size_t length = toolset.length(); |
| 1742 | |
| 1743 | if (cmHasLiteralSuffix(toolset, "_xp")) { |
| 1744 | length -= 3; |
| 1745 | } |
| 1746 | |
| 1747 | return toolset.substr(0, length); |
| 1748 | } |
no test coverage detected