machines-in-motion / shared_memory

realtime interprocess communication
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

shared memory array get and set also taking pointer as arg #15

Closed vincentberenz closed 4 years ago

vincentberenz commented 4 years ago

Issue solved

The set and get methods of shared_memory::array took only references as argument. This required dereference when T was an array (e.g double[10]). Now set and get can take either reference or pointer

How it was tested

Demos and unit tests run fine