Using T[1] instead of T for functions overloaded for T(&)[N]
- by Abyx
The asio::buffer function has (void*, size_t) and (PodType(&)[N]) overloads.
I didn't want to write ugly C-style (&x, sizeof(x)) code, so I wrote this:
SomePacket packet[1]; // SomePacket is POD
read(socket, asio::buffer(packet));
foo = packet->foo;
But that packet-> looks kinda weird - the packet is an array after all.
(And…