We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a5fe0 commit ea8e28fCopy full SHA for ea8e28f
src/Duplo.cpp
@@ -351,6 +351,14 @@ void Duplo::Run(const Options& options) {
351
352
std::cout << "Loading and hashing files ... " << std::flush;
353
354
+ if (options.GetOutputXml()) {
355
+ outfile
356
+ << "<?xml version=\"1.0\"?>"
357
+ << std::endl
358
+ << "<duplo>"
359
+ << std::endl;
360
+ }
361
+
362
auto lines = LoadFileList(options.GetListFilename());
363
auto [sourceFiles, matrix, files, locsTotal] =
364
LoadSourceFiles(lines, options.GetMinChars(), options.GetIgnorePrepStuff());
0 commit comments