Artur Bać
Artur Bać
Btw the decision is in Stephan's hands, I have nothing to do with it except to advise.
> This is right, but the hybrid form doesn't have conditional macros everywhere. It's only in the top section, there is no more conditional macros down below. What about 90%...
@stephenberry I finished module support in simple_enum except glaze dedicated header .. So I wonder how to introduce module support for glaze in simple_enum with [this](https://github.com/arturbac/simple_enum/blob/master/include/simple_enum/glaze_json_enum_name.hpp) glaze dedicated header in...
> There is an EXPORT macro (like assert) > A lot of people are probably confused like you, so maybe I should add an FAQ section 😆. I am sorry...
From my module [simple enum experiment](https://github.com/arturbac/simple_enum/pull/24) with modules - clang-20 libc++, libstdc++14 - everything is perfectly OK - clang-19 libc++ - OK - clang-19 libstdc++14 - FAILS in stdc++ ranges...
> : note: assignment to member '_M_local_buf' of union with no active member is not allowed in a constant expression short answer AFIR, gnu team in libstdc++ is allowed to...
> Also, are you sure you want to convert standard includes to import std/std.compat? what's the point of that ? it does not change anything on user of glaze side....
I see now in tests of "char array write" and "char array read" that You intentionally break array storage and treat array as char *, IMHO which does not make...
And to explain why I am looking into that, I have a code which has string tables containing large string data as single table + table of offsets. So it...
I will mention again here is active buffer overflow ```cpp else if constexpr (array_char_t) { return *value.data() ? sv{value.data()} : ""; ``` when sized array of chars (only) does not...