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

Method getNextFileSettings

gui/threadresult.cpp:79–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79void ThreadResult::getNextFileSettings(const FileSettings*& fs)
80{
81 std::lock_guard<std::mutex> locker(mutex);
82 fs = nullptr;
83 if (mItNextFileSettings == mFileSettings.cend()) {
84 return;
85 }
86 fs = &(*mItNextFileSettings);
87 ++mItNextFileSettings;
88}
89
90void ThreadResult::setFiles(std::list<FileWithDetails> files)
91{

Callers 1

runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected