mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 17:52:52 +00:00
Placement new can be misleading, as we already overload the new operator to construct objects via pointers to allocators. To prohibit any problems here, and to use one consistent approach, we can explicitely construct the object with the already available 'construct_at' template function. Ref #1443