Alecto Irene Perez

Results 25 comments of Alecto Irene Perez

**Update:** I've implemented this feature [here](https://github.com/codeinred/llvm-project/tree/def-blocks). I'll be submitting this patch for review.

**Update:** Patch submitted for review: https://reviews.llvm.org/D132256

This looks really good!

Boosting because this would be a nice feature!

Based on [this test code](https://github.com/pybind/pybind11/blob/416f7a4410d3638273dd071a7cd4e63cd481ca92/tests/test_enum.py#L217) it seems like implicit conversion to int is intended behavior. ```py def test_enum_to_int(): m.test_enum_to_int(m.Flags.Read) m.test_enum_to_int(m.ClassWithUnscopedEnum.EMode.EFirstMode) m.test_enum_to_int(m.ScopedCharEnum.Positive) m.test_enum_to_int(m.ScopedBoolEnum.TRUE) # ... ``` This is fine, but -...

What needs to be done to push it over the finish line?

Just want to comment - there's continued interest in packed arrays and N-D array types

Hi, Thank you so much for your response! If we enabled nopointergc, would that prevent destructors from being called? This could be problematic for some objects using RAII, and it...

Regarding this issue, have you tried compiling the library with g++-11? When working on a coroutine library I noticed that g++-10 had a number of small bugs in the way...

**With regard to coroutine libraries being lazy:** In the typical case, an executor can also start a coroutine before it's co_await'd on. So the coroutine is lazy because all the...