From 5962db438939ef2754509b8578af1f845ec07dc8 Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Tue, 22 Aug 2017 23:42:36 +0200 Subject: Use C++11 nullptr --- Source/cmGetTargetPropertyCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/cmGetTargetPropertyCommand.cxx') diff --git a/Source/cmGetTargetPropertyCommand.cxx b/Source/cmGetTargetPropertyCommand.cxx index 0910a53243..ec485aa3e4 100644 --- a/Source/cmGetTargetPropertyCommand.cxx +++ b/Source/cmGetTargetPropertyCommand.cxx @@ -34,7 +34,7 @@ bool cmGetTargetPropertyCommand::InitialPass( prop_exists = true; } } else if (!args[2].empty()) { - const char* prop_cstr = CM_NULLPTR; + const char* prop_cstr = nullptr; cmListFileBacktrace bt = this->Makefile->GetBacktrace(); cmMessenger* messenger = this->Makefile->GetMessenger(); if (cmTargetPropertyComputer::PassesWhitelist(tgt->GetType(), args[2], -- cgit v1.2.1