diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-25 14:29:54 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-28 22:18:13 (GMT) |
commit | 23370344427ce8da470ff6266a675150457fdda2 (patch) | |
tree | 4cefc491f0866015557d24ae78d0060ae1b5df1c /Source/cmDefinitions.h | |
parent | b9f4dd39bb3878ef1fbb0b5b6bc23bab5425584d (diff) | |
download | CMake-23370344427ce8da470ff6266a675150457fdda2.zip CMake-23370344427ce8da470ff6266a675150457fdda2.tar.gz CMake-23370344427ce8da470ff6266a675150457fdda2.tar.bz2 |
cmDefinitions: Remove unused Set return value.
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 ab588ee..690df1f 100644 --- a/Source/cmDefinitions.h +++ b/Source/cmDefinitions.h @@ -38,7 +38,7 @@ public: const char* Get(const std::string& key); /** Set (or unset if null) a value associated with a key. */ - const char* Set(const std::string& key, const char* value); + void Set(const std::string& key, const char* value); /** Get the set of all local keys. */ std::set<std::string> LocalKeys() const; |