diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-26 14:34:13 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-29 20:49:05 (GMT) |
commit | 818bf727c1eb4a500decb5856715a964c948242e (patch) | |
tree | 84c13db2a61b91b3b2e90db5626a6ad6449269b5 /Source/cmDefinitions.h | |
parent | 5067ae41b03442a7dba9210595e782678835a3ff (diff) | |
download | CMake-818bf727c1eb4a500decb5856715a964c948242e.zip CMake-818bf727c1eb4a500decb5856715a964c948242e.tar.gz CMake-818bf727c1eb4a500decb5856715a964c948242e.tar.bz2 |
cmDefinitions: Change LocalKeys to return a vector.
This is more efficient and we lose nothing.
Diffstat (limited to 'Source/cmDefinitions.h')
-rw-r--r-- | Source/cmDefinitions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDefinitions.h b/Source/cmDefinitions.h index 13f885d..d21ec23 100644 --- a/Source/cmDefinitions.h +++ b/Source/cmDefinitions.h @@ -43,7 +43,7 @@ public: void Erase(const std::string& key); /** Get the set of all local keys. */ - std::set<std::string> LocalKeys() const; + std::vector<std::string> LocalKeys() const; /** Compute the closure of all defined keys with values. This flattens the scope. The result has no parent. */ |