diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-26 13:38:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-29 22:32:18 (GMT) |
commit | 5ccff6408c93e67d7f8445ce1bf6465b068d6f6b (patch) | |
tree | 4f1b66350da2c061872dd17713e26c856eb45a7c /Source/cmDefinitions.h | |
parent | f79cd99d6dcdfcdcd341c5ea90a5f2d9c4d6d3bc (diff) | |
download | CMake-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.h | 4 |
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, |