diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-12 10:35:28 +0100 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-02-12 10:39:35 +0100 |
commit | 5b88504f650c7bcd3d404853b26292b50fa6f141 (patch) | |
tree | f628cdf768e2549b7569edacb0eb4cb759f03471 /Source/cmListFileCache.h | |
parent | b030323c133155c57437527d04ca2ba619663f6d (diff) | |
download | cmake-5b88504f650c7bcd3d404853b26292b50fa6f141.tar.gz |
Rename the IncludeDirectoriesEntry to be more generic.
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r-- | Source/cmListFileCache.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index c057754a3c..fec3d07d89 100644 --- a/Source/cmListFileCache.h +++ b/Source/cmListFileCache.h @@ -76,4 +76,13 @@ struct cmListFile std::vector<cmListFileFunction> Functions; }; +struct cmValueWithOrigin { + cmValueWithOrigin(const std::string &value, + const cmListFileBacktrace &bt) + : Value(value), Backtrace(bt) + {} + std::string Value; + cmListFileBacktrace Backtrace; +}; + #endif |