| 1263 | } |
| 1264 | |
| 1265 | SymbolProperties::SymbolProperties() |
| 1266 | { |
| 1267 | // not using an initializer list |
| 1268 | // to avoid some PGI compiler warnings |
| 1269 | this->SetBinary("???"); |
| 1270 | this->SetBinaryBaseAddress(nullptr); |
| 1271 | this->Address = nullptr; |
| 1272 | this->SetSourceFile("???"); |
| 1273 | this->SetFunction("???"); |
| 1274 | this->SetLineNumber(-1); |
| 1275 | this->SetReportPath(0); |
| 1276 | // avoid PGI compiler warnings |
| 1277 | this->GetRealAddress(); |
| 1278 | this->GetFunction(); |
| 1279 | this->GetSourceFile(); |
| 1280 | this->GetLineNumber(); |
| 1281 | } |
| 1282 | |
| 1283 | std::string SymbolProperties::GetFileName(std::string const& path) const |
| 1284 | { |
nothing calls this directly
no test coverage detected