diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-06-25 17:13:22 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-06-26 17:55:05 +0200 |
commit | ed4d7bde0c6dd6d7f4812f2601e1fa2f681ed960 (patch) | |
tree | ec0cc1dc2f2b469c1a75adeee484fda3446317fa /low-can-binding/diagnostic/diagnostic-message.cpp | |
parent | a6fb72a70f90c35e0968f2460d324a8505410562 (diff) |
Use shared_ptr to set message_set parent
Better to use shared_ptr instead of raw pointer if possible.
Bug-AGL: SPEC-2386
Change-Id: Id853d8ac6cddd1e53edd84e3bf27b0f1f5d92d4b
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/diagnostic/diagnostic-message.cpp')
-rw-r--r-- | low-can-binding/diagnostic/diagnostic-message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/low-can-binding/diagnostic/diagnostic-message.cpp b/low-can-binding/diagnostic/diagnostic-message.cpp index 701248dc..6ebb6ab1 100644 --- a/low-can-binding/diagnostic/diagnostic-message.cpp +++ b/low-can-binding/diagnostic/diagnostic-message.cpp @@ -114,7 +114,7 @@ void diagnostic_message_t::set_supported(bool value) supported_ = value; } -void diagnostic_message_t::set_parent(can_message_set_t* parent) +void diagnostic_message_t::set_parent(std::shared_ptr<can_message_set_t> parent) { parent_ = parent; } |