Fabio

Results 7 comments of Fabio

I believe the problem lies in the fact that any type that has a conversion operator to one of the types the variant holds can throw an exception during the...

> Could we only do this optimization when exceptions are disabled? Even though they're disabled in the current compilation unit, they might not haven been disabled in the compilation unit...

I actually need this feature, I have a transparent layer with a shadow, which is obviously not working in IE with PIE. I'll see if I can hack it up...

Sqlite docs [explicitly state](https://www.sqlite.org/c3ref/last_insert_rowid.html) that in case of multiple threads doing inserts on the same connection the result of last_insert_row_id() is unpredictable, so the user is already warned of the...

@Sarna555 Any specific reason you can't use std::variant? ```c++ constexpr struct notimplemented_t{} notimplemented{}; struct MyType { using INT2 = std::int16_t; using INT4 = std::int32_t; using INT8 = std::int64_t; using FLOAT4...

Well, I beg to differ. It seems easier to directly use the types you need and not allocate any memory on the heap, rather than keeping a list of enums...

Il giorno mar 13 giu 2023 alle ore 15:42 Bela Schaum ***@***.***> ha scritto: > > @denzor200 > > UB: It's all made in compile time, so if there is...