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

Method getNextFile

gui/threadresult.cpp:68–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68void ThreadResult::getNextFile(const FileWithDetails*& file)
69{
70 std::lock_guard<std::mutex> locker(mutex);
71 file = nullptr;
72 if (mItNextFile == mFiles.cend()) {
73 return;
74 }
75 file = &(*mItNextFile);
76 ++mItNextFile;
77}
78
79void ThreadResult::getNextFileSettings(const FileSettings*& fs)
80{

Callers 1

runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected