summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-30 11:17:55 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-02 23:03:59 (GMT)
commit52919ac8ac22e1646f8f46907fe9c8e753d954cf (patch)
treeb01c21c644b9e654fef19f1ee42d4d8b4b3048c3 /Source/cmCustomCommand.cxx
parentb68f2ea8ae26b23639df5978116375b47b4123c3 (diff)
downloadCMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.zip
CMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.tar.gz
CMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.tar.bz2
cmMakefile: Make cmListFileBacktrace default constructible.
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r--Source/cmCustomCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx
index 015825d..4032b08 100644
--- a/Source/cmCustomCommand.cxx
+++ b/Source/cmCustomCommand.cxx
@@ -17,7 +17,7 @@
//----------------------------------------------------------------------------
cmCustomCommand::cmCustomCommand()
- : Backtrace(NULL)
+ : Backtrace()
{
this->HaveComment = false;
this->EscapeOldStyle = true;
@@ -82,7 +82,7 @@ cmCustomCommand::cmCustomCommand(cmMakefile const* mf,
WorkingDirectory(workingDirectory?workingDirectory:""),
EscapeAllowMakeVars(false),
EscapeOldStyle(true),
- Backtrace(NULL)
+ Backtrace()
{
this->EscapeOldStyle = true;
this->EscapeAllowMakeVars = false;