summaryrefslogtreecommitdiffstats
path: root/Source/cmDefinitions.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-26 13:38:36 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-29 22:32:18 (GMT)
commit5ccff6408c93e67d7f8445ce1bf6465b068d6f6b (patch)
tree4f1b66350da2c061872dd17713e26c856eb45a7c /Source/cmDefinitions.h
parentf79cd99d6dcdfcdcd341c5ea90a5f2d9c4d6d3bc (diff)
downloadCMake-5ccff6408c93e67d7f8445ce1bf6465b068d6f6b.zip
CMake-5ccff6408c93e67d7f8445ce1bf6465b068d6f6b.tar.gz
CMake-5ccff6408c93e67d7f8445ce1bf6465b068d6f6b.tar.bz2
cmDefinitions: Externalize looping for ClosureKeys.
Diffstat (limited to 'Source/cmDefinitions.h')
-rw-r--r--Source/cmDefinitions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDefinitions.h b/Source/cmDefinitions.h
index 87f5c34..4c7f11f 100644
--- a/Source/cmDefinitions.h
+++ b/Source/cmDefinitions.h
@@ -47,8 +47,8 @@ public:
/** Get the set of all local keys. */
std::vector<std::string> LocalKeys() const;
- /** Compute the set of all defined keys. */
- std::vector<std::string> ClosureKeys() const;
+ std::vector<std::string>
+ ClosureKeys(std::set<std::string>& bound) const;
static cmDefinitions MakeClosure(
std::list<cmDefinitions>::const_reverse_iterator rbegin,