diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-29 16:47:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-06 18:16:20 (GMT) |
commit | bf28b7874b999224782fac72c5a74020bd6c47d3 (patch) | |
tree | a1559e4feb0b4499932fd3420fe87488c4dd5ec5 /Source/cmGeneratorTarget.h | |
parent | 9d653f9c1cc129be4fdce7f0e93c282760c7603e (diff) | |
download | CMake-bf28b7874b999224782fac72c5a74020bd6c47d3.zip CMake-bf28b7874b999224782fac72c5a74020bd6c47d3.tar.gz CMake-bf28b7874b999224782fac72c5a74020bd6c47d3.tar.bz2 |
cmGeneratorTarget: Rename internal member.
Leave the old name available for another use.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 916f281..6d5641b 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -370,7 +370,7 @@ private: friend class cmTargetTraceDependencies; struct SourceEntry { std::vector<cmSourceFile*> Depends; }; typedef std::map<cmSourceFile const*, SourceEntry> SourceEntriesType; - SourceEntriesType SourceEntries; + SourceEntriesType SourceDepends; mutable std::map<cmSourceFile const*, std::string> Objects; std::set<cmSourceFile const*> ExplicitObjectName; mutable std::map<std::string, std::vector<std::string> > SystemIncludesCache; |