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)
|
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)
|
bool Suppressions::Suppression::parseComment(std::string comment, std::string *errorMessage)
|
||||||
|
|
|
@ -38,13 +38,13 @@ public:
|
||||||
std::string errorId;
|
std::string errorId;
|
||||||
void setFileName(const std::string &s);
|
void setFileName(const std::string &s);
|
||||||
const std::string &getFileName() const {
|
const std::string &getFileName() const {
|
||||||
return _fileName;
|
return mFileName;
|
||||||
}
|
}
|
||||||
int lineNumber;
|
int lineNumber;
|
||||||
bool inconclusive;
|
bool inconclusive;
|
||||||
std::string symbolNames;
|
std::string symbolNames;
|
||||||
private:
|
private:
|
||||||
std::string _fileName;
|
std::string mFileName;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CPPCHECKLIB Suppression {
|
struct CPPCHECKLIB Suppression {
|
||||||
|
|
Loading…
Reference in New Issue