summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.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/cmTarget.cxx
parentb68f2ea8ae26b23639df5978116375b47b4123c3 (diff)
downloadCMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.zip
CMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.tar.gz
CMake-52919ac8ac22e1646f8f46907fe9c8e753d954cf.tar.bz2
cmMakefile: Make cmListFileBacktrace default constructible.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 70005b4..dcbcb13 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -94,13 +94,13 @@ class cmTargetInternals
{
public:
cmTargetInternals()
- : Backtrace(NULL)
+ : Backtrace()
{
this->PolicyWarnedCMP0022 = false;
this->UtilityItemsDone = false;
}
cmTargetInternals(cmTargetInternals const&)
- : Backtrace(NULL)
+ : Backtrace()
{
this->PolicyWarnedCMP0022 = false;
this->UtilityItemsDone = false;