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

Method GetTopCheckInProgressMessage

Source/cmake.h:484–489  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482 return this->CheckInProgressMessages.size();
483 }
484 std::string GetTopCheckInProgressMessage()
485 {
486 auto message = this->CheckInProgressMessages.back();
487 this->CheckInProgressMessages.pop_back();
488 return message;
489 }
490 void PushCheckInProgressMessage(std::string message)
491 {
492 this->CheckInProgressMessages.emplace_back(std::move(message));

Callers 1

ReportCheckResultFunction · 0.80

Calls 2

pop_backMethod · 0.80
backMethod · 0.45

Tested by

no test coverage detected