diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-09 00:50:47 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:40 +0100 |
commit | 40acdf8f4ee0ee4127ffb5f092aaf0376763e7ce (patch) | |
tree | 07d71f2139648f734d9309eb3c91183578827339 /src/can/can-message.hpp | |
parent | b4a19cda296baa7a5d1ec86af8a5adf2b0a8dd98 (diff) |
Constructor making mandatory to pass a can_bus_dev_t
instance to initialize it as it is reference.
Change-Id: I0261a5e2fdca5a84fd736d7ceae837ff9156b935
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-message.hpp')
-rw-r--r-- | src/can/can-message.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-message.hpp b/src/can/can-message.hpp index 0494f5f7..87d5fa51 100644 --- a/src/can/can-message.hpp +++ b/src/can/can-message.hpp @@ -96,7 +96,7 @@ class can_message_definition_t * needs to compare an incoming CAN message with the previous frame.*/ public: - can_message_definition_t(); + can_message_definition_t(can_bus_dev_t& cbd); uint32_t get_id() const; }; |