Closed dennisklein closed 1 year ago
https://github.com/FairRootGroup/FairMQ/commit/efd6523112f26e9ecfeb1661eecdfccf2b2f3d15 added another breaking change:
Message& operator[](const int index) { return *(fParts[index]); }
to
reference operator[](size_type index) { return fParts[index]; }
where reference is MessagePtr&. This was not intentional. Needs more thought.
reference
MessagePtr&
https://github.com/FairRootGroup/FairMQ/commit/efd6523112f26e9ecfeb1661eecdfccf2b2f3d15 added another breaking change:
to
where
reference
isMessagePtr&
. This was not intentional. Needs more thought.