diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-11 17:16:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-11 17:16:45 (GMT) |
commit | c85069b290922572f9ef15a06ec1d0d0be3adaaa (patch) | |
tree | 8ba1f7b378a0295cea5f550cd8fcb76cb676985e /Source/cmDependsFortran.cxx | |
parent | 25d6c04add53631d6506674c3584fc0d8a6e0d46 (diff) | |
download | CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.zip CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.tar.gz CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.tar.bz2 |
ENH: some changes to the depends signature to be more flexible
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index f063f29..ca2d388 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -76,19 +76,15 @@ struct cmDependsFortranParser_s }; //---------------------------------------------------------------------------- -cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile, - bool verbose): - cmDepends(dir, targetFile, verbose), +cmDependsFortran::cmDependsFortran(): m_SourceFile(), m_IncludePath(0) { } //---------------------------------------------------------------------------- -cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile, - const char* sourceFile, +cmDependsFortran::cmDependsFortran(const char* sourceFile, std::vector<std::string> const& includes): - cmDepends(dir, targetFile, false), m_SourceFile(sourceFile), m_IncludePath(&includes) { |