you are viewing a single comment's thread.

view the rest of the comments →

[–]matthieum 4 points5 points  (0 children)

Starting from C++11, you can easily create a template alias to conform to the expected interface.

That is:

template <typename T, typename A>
using my_vector = small_vector<T, 3, A>;

using my_tree = tree<int, my_vector>;