diff options
author | Brad King <brad.king@kitware.com> | 2015-07-29 11:44:25 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-29 11:48:58 -0400 |
commit | 613bc08ac15b74a395ef0eca7668f7192b438204 (patch) | |
tree | 1eb0c904486d58cf5ebdcb377788ec74b78cb3e9 /Source/cmDependsFortran.h | |
parent | 6d79eda769a5693ed4657f50c97ef5a0c9ba2e1b (diff) | |
download | cmake-613bc08ac15b74a395ef0eca7668f7192b438204.tar.gz |
cmDependsFortran: Use string to store module directory
Diffstat (limited to 'Source/cmDependsFortran.h')
-rw-r--r-- | Source/cmDependsFortran.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.h b/Source/cmDependsFortran.h index d6ec7d7eb7..a8a4013304 100644 --- a/Source/cmDependsFortran.h +++ b/Source/cmDependsFortran.h @@ -66,7 +66,8 @@ protected: // Actually write the depenencies to the streams. bool WriteDependenciesReal(const char *obj, cmFortranSourceInfo const& info, - const char* mod_dir, const char* stamp_dir, + std::string const& mod_dir, + const char* stamp_dir, std::ostream& makeDepends, std::ostream& internalDepends); |