changed comments

This commit is contained in:
proddy
2024-10-05 19:02:39 +02:00
parent 90b2ba14c6
commit da53d063e7
5 changed files with 6 additions and 10 deletions

View File

@@ -285,7 +285,7 @@ class RxService : public EMSbus {
const std::shared_ptr<const Telegram> telegram_;
~QueuedRxTelegram() = default;
// TODO check if still works without std::shared_ptr<Telegram> && telegram
// removed && from telegram in 3.7.0-dev.43
QueuedRxTelegram(uint16_t id, std::shared_ptr<Telegram> telegram)
: id_(id)
, telegram_(std::move(telegram)) {
@@ -415,7 +415,7 @@ class TxService : public EMSbus {
const uint16_t validateid_;
~QueuedTxTelegram() = default;
// TODO test this refactor, removing && from std::shared_ptr<Telegram> && telegram
// replaced && im std::shared_ptr<Telegram> telegram in 3.7.0-dev.43
QueuedTxTelegram(uint16_t id, std::shared_ptr<Telegram> telegram, bool retry, uint16_t validateid)
: id_(id)
, telegram_(std::move(telegram))