use CM_NULLPTR

This commit is contained in:
Daniel Pfeifer
2016-06-27 22:44:16 +02:00
committed by Brad King
parent b4b73f56a2
commit 1d6909a287
201 changed files with 1143 additions and 1075 deletions
+3 -2
View File
@@ -38,7 +38,7 @@ public:
Item()
: Value()
, IsPath(true)
, Target(0)
, Target(CM_NULLPTR)
{
}
Item(Item const& item)
@@ -47,7 +47,8 @@ public:
, Target(item.Target)
{
}
Item(std::string const& v, bool p, cmGeneratorTarget const* target = 0)
Item(std::string const& v, bool p,
cmGeneratorTarget const* target = CM_NULLPTR)
: Value(v)
, IsPath(p)
, Target(target)