Skip to content

Commit 4b1a18c

Browse files
authored
Merge pull request #26 from david-mikulin/master
Lined up comments in all sections.
2 parents 71d1f09 + dfd74df commit 4b1a18c

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/main.cpp

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -355,37 +355,37 @@ class Operations {
355355
std::cout << " Source directory is assumed to be the current one if unspecified\n";
356356
std::cout << "\n";
357357
std::cout << " Commands:\n";
358-
std::cout << " --help : Produce this help text\n";
358+
std::cout << " --help : Produce this help text\n";
359359
std::cout << "\n";
360360
std::cout << " Extracting graphs:\n";
361361
std::cout << " --graph <output> : Graph of all components with dependencies\n";
362362
std::cout << " --graph-cycles <output> : Graph of components with cyclic dependencies on other components\n";
363363
std::cout << " --graph-target <target> <output> : Graph for all dependencies of a specific target\n";
364364
std::cout << "\n";
365365
std::cout << " Getting information:\n";
366-
std::cout << " --stats : Info about code base size, complexity and cyclic dependency count\n";
367-
std::cout << " --cycles <targetname> : Find all possible paths from this target back to itself\n";
368-
std::cout << " --shortest : Determine shortest path between components and its reason\n";
369-
std::cout << " --outliers : Finds all components and files that match a criterium for being out of the ordinary\n";
370-
std::cout << " - libraries that are not used\n";
371-
std::cout << " - components that use a lot of other components\n";
372-
std::cout << " - components with dependencies towards executables\n";
373-
std::cout << " - components with less than 200 LoC\n";
374-
std::cout << " - components with more than 20 kLoC\n";
375-
std::cout << " - components that are part of a cycle\n";
376-
std::cout << " - files that are more than 2000 LoC\n";
377-
std::cout << " - files that are not compiled and never included\n";
366+
std::cout << " --stats : Info about code base size, complexity and cyclic dependency count\n";
367+
std::cout << " --cycles <targetname> : Find all possible paths from this target back to itself\n";
368+
std::cout << " --shortest : Determine shortest path between components and its reason\n";
369+
std::cout << " --outliers : Finds all components and files that match a criterium for being out of the ordinary\n";
370+
std::cout << " - libraries that are not used\n";
371+
std::cout << " - components that use a lot of other components\n";
372+
std::cout << " - components with dependencies towards executables\n";
373+
std::cout << " - components with less than 200 LoC\n";
374+
std::cout << " - components with more than 20 kLoC\n";
375+
std::cout << " - components that are part of a cycle\n";
376+
std::cout << " - files that are more than 2000 LoC\n";
377+
std::cout << " - files that are not compiled and never included\n";
378378
std::cout << "\n";
379379
std::cout << " Target information:\n";
380-
std::cout << " --info : Show all information on a given specific target\n";
381-
std::cout << " --usedby : Find all references to a specific header file\n";
382-
std::cout << " --inout : Find all incoming and outgoing links for a target\n";
383-
std::cout << " --ambiguous : Find all include statements that could refer to more than one header\n";
380+
std::cout << " --info : Show all information on a given specific target\n";
381+
std::cout << " --usedby : Find all references to a specific header file\n";
382+
std::cout << " --inout : Find all incoming and outgoing links for a target\n";
383+
std::cout << " --ambiguous : Find all include statements that could refer to more than one header\n";
384384
std::cout << "\n";
385385
std::cout << " Automatic CMakeLists.txt generation:\n";
386386
std::cout << " Note: These commands only have any effect on CMakeLists.txt marked with \"" << Configuration::Get().regenTag << "\"\n";
387-
std::cout << " --regen : Re-generate all marked CMakeLists.txt with the component information derived.\n";
388-
std::cout << " --dryregen : Verify which CMakeLists would be regenerated if you were to run --regen now.\n";
387+
std::cout << " --regen : Re-generate all marked CMakeLists.txt with the component information derived.\n";
388+
std::cout << " --dryregen : Verify which CMakeLists would be regenerated if you were to run --regen now.\n";
389389
}
390390
enum LoadStatus {
391391
Unloaded,

0 commit comments

Comments
 (0)