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

Function cmLoadFlagTableString

Source/cmGlobalVisualStudio10Generator.cxx:1341–1350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1339}
1340
1341static std::string cmLoadFlagTableString(Json::Value entry, char const* field)
1342{
1343 if (entry.isMember(field)) {
1344 auto string = entry[field];
1345 if (string.isConvertibleTo(Json::ValueType::stringValue)) {
1346 return string.asString();
1347 }
1348 }
1349 return "";
1350}
1351
1352static unsigned int cmLoadFlagTableSpecial(Json::Value entry,
1353 char const* field)

Callers 1

cmLoadFlagTableJsonFunction · 0.85

Calls 3

isMemberMethod · 0.80
isConvertibleToMethod · 0.80
asStringMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…