fixed wrong spelled words in comments. No function change.
This commit is contained in:
parent
11614021e8
commit
5d088aa99c
|
@ -703,7 +703,7 @@ void CheckStl::stlBoundries()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Error message for bad boundry usage..
|
// Error message for bad boundary usage..
|
||||||
void CheckStl::stlBoundriesError(const Token *tok, const std::string &container_name)
|
void CheckStl::stlBoundriesError(const Token *tok, const std::string &container_name)
|
||||||
{
|
{
|
||||||
reportError(tok, Severity::error, "stlBoundries",
|
reportError(tok, Severity::error, "stlBoundries",
|
||||||
|
|
|
@ -171,7 +171,7 @@ std::string Path::getRelativePath(const std::string& absolutePath, const std::ve
|
||||||
|
|
||||||
bool Path::isC(const std::string &path)
|
bool Path::isC(const std::string &path)
|
||||||
{
|
{
|
||||||
// In unix, ".C" is concidered C++ file
|
// In unix, ".C" is considered C++ file
|
||||||
const std::string extension = getFilenameExtension(path);
|
const std::string extension = getFilenameExtension(path);
|
||||||
return(extension == ".c");
|
return(extension == ".c");
|
||||||
}
|
}
|
||||||
|
@ -188,7 +188,7 @@ bool Path::isCPP(const std::string &path)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// In unix, ".C" is concidered C++ file
|
// In unix, ".C" is considered C++ file
|
||||||
return(getFilenameExtension(path) == ".C");
|
return(getFilenameExtension(path) == ".C");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue