summaryrefslogtreecommitdiff
path: root/Source/cmProperty.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmProperty.cxx')
-rw-r--r--Source/cmProperty.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmProperty.cxx b/Source/cmProperty.cxx
index 222afb497..27f0ecd71 100644
--- a/Source/cmProperty.cxx
+++ b/Source/cmProperty.cxx
@@ -2,8 +2,6 @@
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmProperty.h"
-#include "cmConfigure.h"
-
void cmProperty::Set(const char* value)
{
this->Value = value;
@@ -24,5 +22,5 @@ const char* cmProperty::GetValue() const
if (this->ValueHasBeenSet) {
return this->Value.c_str();
}
- return CM_NULLPTR;
+ return nullptr;
}