| 532 | } |
| 533 | |
| 534 | char const* cmFileAPI::ObjectKindName(ObjectKind kind) |
| 535 | { |
| 536 | // Keep in sync with ObjectKind enum. |
| 537 | static char const* objectKindNames[] = { |
| 538 | "codemodel", // |
| 539 | "configureLog", // |
| 540 | "cache", // |
| 541 | "cmakeFiles", // |
| 542 | "toolchains", // |
| 543 | "__test" // |
| 544 | }; |
| 545 | return objectKindNames[static_cast<size_t>(kind)]; |
| 546 | } |
| 547 | |
| 548 | std::string cmFileAPI::ObjectName(Object o) |
| 549 | { |
no outgoing calls
no test coverage detected