summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeObject.cxx
diff options
context:
space:
mode:
authorMatthias Maennich <matthias@maennich.net>2017-09-18 21:57:50 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-19 15:44:21 (GMT)
commita5279ae553caba7ab875ee06d2ce2d079907145d (patch)
tree06b58455c6c0e385fb5986b5aed447b7db173d90 /Source/cmXCodeObject.cxx
parenta1cdf537ffb33db3a368dc4c2c3662fa27568400 (diff)
downloadCMake-a5279ae553caba7ab875ee06d2ce2d079907145d.zip
CMake-a5279ae553caba7ab875ee06d2ce2d079907145d.tar.gz
CMake-a5279ae553caba7ab875ee06d2ce2d079907145d.tar.bz2
Use C++11 nullptr (cont.)
Fix remaining occurrences of the issue addressed in commit 5962db4389 (Use C++11 nullptr, 2017-08-22) that are only showing up on macOS. Signed-off-by: Matthias Maennich <matthias@maennich.net>
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r--Source/cmXCodeObject.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index 0def8c3..957adb4 100644
--- a/Source/cmXCodeObject.cxx
+++ b/Source/cmXCodeObject.cxx
@@ -42,8 +42,8 @@ cmXCodeObject::~cmXCodeObject()
cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
{
this->Version = 15;
- this->Target = 0;
- this->Object = 0;
+ this->Target = nullptr;
+ this->Object = nullptr;
this->IsA = ptype;
@@ -71,7 +71,7 @@ cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
this->TypeValue = type;
if (this->TypeValue == OBJECT) {
- this->AddAttribute("isa", 0);
+ this->AddAttribute("isa", nullptr);
}
}
@@ -86,7 +86,7 @@ bool cmXCodeObject::IsEmpty() const
return this->ObjectAttributes.empty();
case OBJECT_REF:
case OBJECT:
- return this->Object == 0;
+ return this->Object == nullptr;
}
return true; // unreachable, but quiets warnings
}