| 89 | } |
| 90 | |
| 91 | void cmCTestGlobalVC::WriteXMLGlobal(cmXMLWriter& xml) |
| 92 | { |
| 93 | if (!this->NewRevision.empty()) { |
| 94 | xml.Element("Revision", this->NewRevision); |
| 95 | } |
| 96 | if (!this->OldRevision.empty() && this->OldRevision != this->NewRevision) { |
| 97 | xml.Element("PriorRevision", this->OldRevision); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | bool cmCTestGlobalVC::WriteXMLUpdates(cmXMLWriter& xml) |
| 102 | { |
no test coverage detected