MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / sameFileName

Method sameFileName

lib/path.cpp:107–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105}
106
107bool Path::sameFileName(const std::string &fname1, const std::string &fname2)
108{
109 return caseInsensitiveFilesystem() ? (caseInsensitiveStringCompare(fname1, fname2) == 0) : (fname1 == fname2);
110}
111
112std::string Path::removeQuotationMarks(std::string path)
113{

Callers

nothing calls this directly

Calls 2

Tested by

no test coverage detected