summaryrefslogtreecommitdiffstats
path: root/Source/cmGetPropertyCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 21:01:40 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 21:01:40 (GMT)
commit782fcbb92e096a28f899c89eed6fe23f29cd997c (patch)
tree3700d9b442648c39ef1a4b0c3bdee45d5f327943 /Source/cmGetPropertyCommand.cxx
parent809ca6c81fa23cec111a9e97529d71538c55f9eb (diff)
downloadCMake-782fcbb92e096a28f899c89eed6fe23f29cd997c.zip
CMake-782fcbb92e096a28f899c89eed6fe23f29cd997c.tar.gz
CMake-782fcbb92e096a28f899c89eed6fe23f29cd997c.tar.bz2
Use CM_NULLPTR
Diffstat (limited to 'Source/cmGetPropertyCommand.cxx')
-rw-r--r--Source/cmGetPropertyCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx
index 3aef9cf..8063328 100644
--- a/Source/cmGetPropertyCommand.cxx
+++ b/Source/cmGetPropertyCommand.cxx
@@ -253,7 +253,7 @@ bool cmGetPropertyCommand::HandleTargetMode()
if (this->Makefile->IsAlias(this->Name)) {
return this->StoreResult(target->GetName().c_str());
}
- return this->StoreResult(NULL);
+ return this->StoreResult(CM_NULLPTR);
}
return this->StoreResult(
target->GetProperty(this->PropertyName, this->Makefile));