| 165 | } |
| 166 | |
| 167 | void VPrintf(bool Verbose, const char *Fmt, ...) { |
| 168 | if (!Verbose) return; |
| 169 | va_list ap; |
| 170 | va_start(ap, Fmt); |
| 171 | vfprintf(OutputFile, Fmt, ap); |
| 172 | va_end(ap); |
| 173 | fflush(OutputFile); |
| 174 | } |
| 175 | |
| 176 | static bool MkDirRecursiveInner(const std::string &Leaf) { |
| 177 | // Prevent chance of potential infinite recursion |
no outgoing calls
no test coverage detected