Renamed _fileName
This commit is contained in:
parent
8d66eecf47
commit
37bcec8804
|
@ -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)
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue