A portable C++ alternative to compound literals that is guaranteed to be free of heap allocation

261 Views Asked by At

C99 compound literals are not supported in C++. In many cases, list intialization provides an excellent alternative. However, they are not guaranteed not to heap-allocate memory.

Are there any convenient and portable alternatives for C++ code that needs to work entirely without heap allocations?

2

There are 2 best solutions below

0
On BEST ANSWER

As the answers on the linked question indicate, since C++14 the compiler cannot heap-allocate an initializer list. Moreover, even pre-C++14 compilers won't heap allocate initializer lists, as there's absolutely no reason to do so (and plenty of reasons not to).

0
On

If your program works entirely without heap allocations, adding list initialization will be fine and will not cause heap memory allocation.

The cases where iist initialization might cause heap allocation are the cases where your objects already use heap memory, for example std::list. You certainly don't use those, if you are heap free.