diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-10 13:06:26 -0500 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-10 13:06:26 -0500 |
commit | 634343c3e8c395318d4b6d9e90d97f2a59ec3ae7 (patch) | |
tree | c057576ccfa77d9f6dea07215f4ea3d9de1eb3d5 /Source/cmDependsC.h | |
parent | f01afc89f50e68af3f652437dc350d181fd097b7 (diff) | |
download | cmake-634343c3e8c395318d4b6d9e90d97f2a59ec3ae7.tar.gz |
STYLE: Fix some style issues
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index f7167e8406..6c80db3a49 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -32,22 +32,24 @@ public: cmDependsC(); cmDependsC(std::vector<std::string> const& includes, const char* scanRegex, const char* complainRegex, - std::set<cmStdString> const& generatedFiles, const cmStdString& cachFileName); + std::set<cmStdString> const& generatedFiles, + const cmStdString& cachFileName); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDependsC(); - + protected: typedef std::vector<char> t_CharBuffer; // Implement writing/checking methods required by superclass. - virtual bool WriteDependencies(const char *src, + virtual bool WriteDependencies(const char *src, const char *file, std::ostream& makeDepends, std::ostream& internalDepends); // Method to scan a single file. - void Scan(std::istream& is, const char* directory, const cmStdString& fullName); + void Scan(std::istream& is, const char* directory, + const cmStdString& fullName); // Method to test for the existence of a file. bool FileExistsOrIsGenerated(const std::string& fname, |