summaryrefslogtreecommitdiffstats
path: root/Source/cmProperty.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 07:46:26 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 07:29:29 (GMT)
commit1c48edf8fc8cec71c780cbb1c587f10df0ab7185 (patch)
tree56ffda5b450c7b0025f0e1d03e0c98ce95a0ce1f /Source/cmProperty.cxx
parent93cc2eef38eab76831916bfee9d6fe16fbaaf4c1 (diff)
downloadCMake-1c48edf8fc8cec71c780cbb1c587f10df0ab7185.zip
CMake-1c48edf8fc8cec71c780cbb1c587f10df0ab7185.tar.gz
CMake-1c48edf8fc8cec71c780cbb1c587f10df0ab7185.tar.bz2
cmProperty: Remove needless Name member.
Size goes from 72 to 40 bytes with GNU libstdc++-5.1.
Diffstat (limited to 'Source/cmProperty.cxx')
-rw-r--r--Source/cmProperty.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmProperty.cxx b/Source/cmProperty.cxx
index 40976db..ef57068 100644
--- a/Source/cmProperty.cxx
+++ b/Source/cmProperty.cxx
@@ -12,17 +12,14 @@
#include "cmProperty.h"
#include "cmSystemTools.h"
-void cmProperty::Set(const std::string& name, const char *value)
+void cmProperty::Set(const char *value)
{
- this->Name = name;
this->Value = value;
this->ValueHasBeenSet = true;
}
-void cmProperty::Append(const std::string& name, const char *value,
- bool asString)
+void cmProperty::Append(const char *value, bool asString)
{
- this->Name = name;
if(!this->Value.empty() && *value && !asString)
{
this->Value += ";";