16 Byte Intro?..... how???? 😲
https://youtu.be/25r6sEQMoh0?t=1123
Ergibt teilweise Sinn irgendwie.... 🤔
@Microfractal I don't think there is. You could extend from Settings<void> though if you don't want to have an explicit BaseSettings struct. Or you need a wrapper for the specializations, e.g.:
template<typename T>
struct CompoundSettings
{
Settings<void> general;
Settings<T> specialized;
};