diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-02-12 09:35:28 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-02-12 09:39:35 (GMT) |
commit | 5b88504f650c7bcd3d404853b26292b50fa6f141 (patch) | |
tree | f628cdf768e2549b7569edacb0eb4cb759f03471 /Source/cmListFileCache.h | |
parent | b030323c133155c57437527d04ca2ba619663f6d (diff) | |
download | CMake-5b88504f650c7bcd3d404853b26292b50fa6f141.zip CMake-5b88504f650c7bcd3d404853b26292b50fa6f141.tar.gz CMake-5b88504f650c7bcd3d404853b26292b50fa6f141.tar.bz2 |
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 c057754..fec3d07 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 |