Renamed _fileName

This commit is contained in:
Daniel Marjamäki 2018-06-17 08:19:10 +02:00
parent 8d66eecf47
commit 37bcec8804
2 changed files with 3 additions and 3 deletions

View File

@ -176,7 +176,7 @@ std::string Suppressions::addSuppression(const Suppressions::Suppression &suppre
void Suppressions::ErrorMessage::setFileName(const std::string &s)
{
_fileName = Path::simplifyPath(s);
mFileName = Path::simplifyPath(s);
}
bool Suppressions::Suppression::parseComment(std::string comment, std::string *errorMessage)

View File

@ -38,13 +38,13 @@ public:
std::string errorId;
void setFileName(const std::string &s);
const std::string &getFileName() const {
return _fileName;
return mFileName;
}
int lineNumber;
bool inconclusive;
std::string symbolNames;
private:
std::string _fileName;
std::string mFileName;
};
struct CPPCHECKLIB Suppression {