diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-18 19:59:18 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-18 21:55:43 (GMT) |
commit | 52a8d19c9b67e5c902155f52fc7d145e091a5e7d (patch) | |
tree | a9e539f05822c8997262e5ffc0a27479e8c0230e /Source/cmTarget.h | |
parent | 59ba1215b936b04fa5c5e8041eae14a754911cb4 (diff) | |
download | CMake-52a8d19c9b67e5c902155f52fc7d145e091a5e7d.zip CMake-52a8d19c9b67e5c902155f52fc7d145e091a5e7d.tar.gz CMake-52a8d19c9b67e5c902155f52fc7d145e091a5e7d.tar.bz2 |
cmTarget: Store only cmListFileContext for CMP0023 handling.
Only the top level execution context is shown, as appropriate, so
store only that.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index a032414..c5e9fc4 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -641,7 +641,7 @@ private: // directories. std::set<std::string> SystemIncludeDirectories; - std::vector<std::pair<TLLSignature, cmListFileBacktrace> > TLLCommands; + std::vector<std::pair<TLLSignature, cmListFileContext> > TLLCommands; #if defined(_WIN32) && !defined(__CYGWIN__) /** |