diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-11-07 10:49:33 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-02-22 11:31:49 (GMT) |
commit | 7620932d8259572dc737d97cec83779efadab5a3 (patch) | |
tree | 74850bafce0b1a4a0c0e079ca72aaa30a4533f03 /Source/cmLocalGenerator.h | |
parent | 97a5faa85895ca77679d794788731cf76b8704ce (diff) | |
download | CMake-7620932d8259572dc737d97cec83779efadab5a3.zip CMake-7620932d8259572dc737d97cec83779efadab5a3.tar.gz CMake-7620932d8259572dc737d97cec83779efadab5a3.tar.bz2 |
Remove include flags memoization.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 7e737ef..77ffd09 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -146,7 +146,7 @@ public: ///! Append flags to a string. virtual void AppendFlags(std::string& flags, const char* newFlags); ///! Get the include flags for the current makefile and language - const char* GetIncludeFlags(const std::vector<std::string> &includes, + std::string GetIncludeFlags(const std::vector<std::string> &includes, const char* lang, bool forResponseFile = false); /** @@ -392,7 +392,6 @@ protected: std::vector<std::string> StartOutputDirectoryComponents; cmLocalGenerator* Parent; std::vector<cmLocalGenerator*> Children; - std::map<cmStdString, cmStdString> LanguageToIncludeFlags; std::map<cmStdString, cmStdString> UniqueObjectNamesMap; std::string::size_type ObjectPathMax; std::set<cmStdString> ObjectMaxPathViolations; |