| 87 | const size_t maxdepth, std::ostream &os) |
| 88 | { |
| 89 | struct Path { |
| 90 | size_t depth; |
| 91 | std::string path; |
| 92 | }; |
| 93 | std::list<struct Path> pendingDirs{ { 0, basePath } }; |
| 94 | while (!pendingDirs.empty()) { |
| 95 | auto path = pendingDirs.front().path; |
nothing calls this directly
no outgoing calls
no test coverage detected