mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 13:19:51 -05:00
use CM_NULLPTR
This commit is contained in:
committed by
Brad King
parent
b4b73f56a2
commit
1d6909a287
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user