MCPcopy Create free account
hub / github.com/PDAL/PDAL / fullVersionString

Function fullVersionString

pdal/pdal_config.cpp:131–142  ·  view source on GitHub ↗

Tell the user a bit about PDAL's compilation

Source from the content-addressed store, hash-verified

129
130/// Tell the user a bit about PDAL's compilation
131std::string fullVersionString()
132{
133 std::ostringstream os;
134
135 std::string sha = sha1();
136 if (!Utils::iequals(sha, "Release"))
137 sha = sha.substr(0,6);
138
139 os << pdalVersion << " (git-version: " << sha << ")";
140
141 return os.str();
142}
143
144
145std::string debugInformation()

Callers 8

outputVersionMethod · 0.85
TESTFunction · 0.85
runMethod · 0.85
executeMethod · 0.85
executeMethod · 0.85
executeMethod · 0.85
setupParquetMethod · 0.85
debugInformationFunction · 0.85

Calls 3

sha1Function · 0.85
iequalsFunction · 0.85
strMethod · 0.80

Tested by 1

TESTFunction · 0.68