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

Function toStdStringList

gui/filelist.cpp:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111static std::vector<std::string> toStdStringList(const QStringList &stringList)
112{
113 std::vector<std::string> ret;
114 std::transform(stringList.cbegin(), stringList.cend(), std::back_inserter(ret), [](const QString& s) {
115 return s.toStdString();
116 });
117 return ret;
118}
119
120QStringList FileList::applyExcludeList() const
121{

Callers 1

applyExcludeListMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected