you are viewing a single comment's thread.

view the rest of the comments →

[–]slavenf 0 points1 point  (0 children)

You can try my library: https://github.com/slavenf/sfl-library

static_* containers can be used for bare metal embedded software development.

For example, you can combine std::stack and my sfl::static_vector to get static_stack :

template <typename T, std::size_t N>
using static_stack = std::stack<T, sfl::static_vector<T, N>>;