| 1476 | } |
| 1477 | |
| 1478 | bool cmTarget::PushTLLCommandTrace(TLLSignature signature, |
| 1479 | cmListFileContext const& lfc) |
| 1480 | { |
| 1481 | bool ret = true; |
| 1482 | if (!this->impl->TLLCommands.empty()) { |
| 1483 | if (this->impl->TLLCommands.back().first != signature) { |
| 1484 | ret = false; |
| 1485 | } |
| 1486 | } |
| 1487 | if (this->impl->TLLCommands.empty() || |
| 1488 | this->impl->TLLCommands.back().second != lfc) { |
| 1489 | this->impl->TLLCommands.emplace_back(signature, lfc); |
| 1490 | } |
| 1491 | return ret; |
| 1492 | } |
| 1493 | |
| 1494 | void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const |
| 1495 | { |
no test coverage detected