diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-16 03:33:30 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-17 14:50:18 (GMT) |
commit | f170985e7aaec7562ca481bab49228ece233c4e4 (patch) | |
tree | 41b6cfdc135d8243545faf8e608daca6b51f795e /Source/cmDefinitions.h | |
parent | 98c5c90361f89f810cdd6fb233f3e822b638f143 (diff) | |
download | CMake-f170985e7aaec7562ca481bab49228ece233c4e4.zip CMake-f170985e7aaec7562ca481bab49228ece233c4e4.tar.gz CMake-f170985e7aaec7562ca481bab49228ece233c4e4.tar.bz2 |
cmDefinitions: Make the ClosureKeys method static.
For consistency with all other closure-related methods.
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 b95ae6b..80643a9 100644 --- a/Source/cmDefinitions.h +++ b/Source/cmDefinitions.h @@ -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); |