cmDefinitions: Make the ClosureKeys method static.

For consistency with all other closure-related methods.
This commit is contained in:
Stephen Kelly
2015-05-16 05:33:30 +02:00
parent 98c5c90361
commit f170985e7a
3 changed files with 17 additions and 19 deletions

View File

@@ -44,8 +44,8 @@ public:
/** Get the set of all local keys. */
std::vector<std::string> LocalKeys() const;
std::vector<std::string>
ClosureKeys(std::set<std::string>& bound) const;
static std::vector<std::string> ClosureKeys(StackConstIter begin,
StackConstIter end);
static cmDefinitions MakeClosure(StackConstIter begin, StackConstIter end);