diff options
-rw-r--r-- | control | 2 | ||||
-rwxr-xr-x | deheader | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ Package: deheader -Description: lift documents in nroff markups to XML-DocBook +Description: find (optionally remove) unneeded includes in C or C++ sourcefiles deheader analyzes C and C++ files to determine which header enclusions can be removed while still allowing them to compile. This may result in substantial improvements in compilation time, especially on large C++ projects; it also @@ -70,7 +70,7 @@ def c_source(filename): return filename.endswith(".c") or filename.endswith(".cpp") class InclusionMap: - "Map the inclusion dependebies of a set of files and directories." + "Map the inclusion dependencies of a set of files and directories." def __init__(self, roots, ignore, verbosity): "Build the initial inclusion map." self.verbosity = verbosity |