diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-05 22:54:57 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-05 22:54:57 (GMT) |
commit | bac93dcf192d8680cd72570682d6593da9818088 (patch) | |
tree | a9e8a7ad43b0c2487f8b43cb70d8a59f8235d25c | |
parent | 1e994985d83b09d71b4928a61a75d1cf3861aaec (diff) | |
download | CMake-bac93dcf192d8680cd72570682d6593da9818088.zip CMake-bac93dcf192d8680cd72570682d6593da9818088.tar.gz CMake-bac93dcf192d8680cd72570682d6593da9818088.tar.bz2 |
cmGeneratorTarget: Don't assing a bool to a string
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index ca056c0..ca3e373 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -3945,7 +3945,6 @@ std::string cmGeneratorTarget::GetFortranModuleDirectory( std::string const& working_dir) const { if (!this->FortranModuleDirectoryCreated) { - this->FortranModuleDirectory = true; this->FortranModuleDirectory = this->CreateFortranModuleDirectory(working_dir); } |