| 21 | }; |
| 22 | |
| 23 | std::string GetIncludeGuardVariableName(std::string const& filePath) |
| 24 | { |
| 25 | cmCryptoHash hasher(cmCryptoHash::AlgoMD5); |
| 26 | return cmStrCat("__INCGUARD_", hasher.HashString(filePath), "__"); |
| 27 | } |
| 28 | |
| 29 | bool CheckIncludeGuardIsSet(cmMakefile* mf, std::string const& includeGuardVar) |
| 30 | { |
no test coverage detected
searching dependent graphs…