summaryrefslogtreecommitdiff
path: root/Source/cmListFileCache.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-02-12 10:35:28 +0100
committerStephen Kelly <steveire@gmail.com>2013-02-12 10:39:35 +0100
commit5b88504f650c7bcd3d404853b26292b50fa6f141 (patch)
treef628cdf768e2549b7569edacb0eb4cb759f03471 /Source/cmListFileCache.h
parentb030323c133155c57437527d04ca2ba619663f6d (diff)
downloadcmake-5b88504f650c7bcd3d404853b26292b50fa6f141.tar.gz
Rename the IncludeDirectoriesEntry to be more generic.
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r--Source/cmListFileCache.h9
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