8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Glaze uses a trick to support non-aggregate initializable struct:
template <> struct glz::meta<my_struct> { using T = my_struct; static constexpr auto value = object( &T::i, &T::d, &T::hello, &T::arr, &T::map ); };
Maybe pfr could use something like that ?