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

Function StringVectorToString

Source/kwsys/testSystemTools.cxx:818–830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

816}
817
818static std::string StringVectorToString(std::vector<std::string> const& vec)
819{
820 std::stringstream ss;
821 ss << "vector(";
822 for (auto i = vec.begin(); i != vec.end(); ++i) {
823 if (i != vec.begin()) {
824 ss << ", ";
825 }
826 ss << *i;
827 }
828 ss << ")";
829 return ss.str();
830}
831
832static bool CheckGetPath()
833{

Callers 1

CheckGetPathFunction · 0.85

Calls 3

strMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…