summaryrefslogtreecommitdiffstats
path: root/Source/cmTargetPropCommandBase.h
diff options
context:
space:
mode:
authorjrp2014 <jrp2014@users.noreply.github.com>2018-04-03 21:18:48 (GMT)
committerBrad King <brad.king@kitware.com>2018-04-05 17:42:48 (GMT)
commitb0676cc5d48a5e7b79e8c95545b464b67248d96e (patch)
tree92da25087976acdfc872cb949338ec894c3bfb0e /Source/cmTargetPropCommandBase.h
parent966dba5b683149e8c42d35a89cd60d593e542593 (diff)
downloadCMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.zip
CMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.tar.gz
CMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.tar.bz2
Add in-class initialization of some members
Several class constructors leave members uninitialized. The members are initialized before use in methods, but it is clearer and less error-prone to initialize them at their definition site.
Diffstat (limited to 'Source/cmTargetPropCommandBase.h')
-rw-r--r--Source/cmTargetPropCommandBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTargetPropCommandBase.h b/Source/cmTargetPropCommandBase.h
index 3c736fc..943285d 100644
--- a/Source/cmTargetPropCommandBase.h
+++ b/Source/cmTargetPropCommandBase.h
@@ -28,7 +28,7 @@ public:
protected:
std::string Property;
- cmTarget* Target;
+ cmTarget* Target = nullptr;
virtual void HandleInterfaceContent(cmTarget* tgt,
const std::vector<std::string>& content,