Arthur O'Dwyer
Arthur O'Dwyer
It's not clear to me why this wasn't true from the very beginning, and `git grep trivial` doesn't enlighten me. `=default` requires at least C++11, but then so does `noexcept`,...
Compare the rendering [before](https://github.com/nasser/---/tree/master?tab=readme-ov-file#the-%D9%82%D9%84%D8%A8-programming-language) versus [after](https://github.com/Quuxplusone/nasser-qalb/tree/unicode?tab=readme-ov-file#the-%D9%82%D9%84%D8%A8-programming-language). Interestingly, GitHub seems to screw up the rendering of the first two paragraphs of the diff — probably because in both cases it's trying...
While looking into #1, I noticed that `explain static x` straight-up segfaults. I'm interested in producing a PR for this whole area of #1 — the current grammar productions look...
I got here from https://stackoverflow.com/a/26048343/1424877 , looking for a way to convert SVG to any-format-I-could-upload-to-StackExchange. At first I tried this: ``` cd /tmp cat >circles.svg
``` $ cd examples $ cat >consumer.c
I would expect this test case to pass: ``` TEST_CASE("issue 67") { int i = 42; int j = 43; tl::optional a = std::ref(i); REQUIRE(&a.value().get() == &i); a = std::ref(j);...
``` TEST_CASE("issue 66") { int i = 42; tl::optional a = i; tl::optional b = a; REQUIRE(&b.value() == &i); b = a; REQUIRE(&b.value() == &i); } ``` I'd like this...
This might be a duplicate of #88, but just in case, I'm opening this separate issue for it. Here is a complete repro, at least on my M1 MacBook with...
Well, this is awkward. #2216 added this `#if` check, but with the P1144 macro typo'ed: `__cpp_lib_is_trivially_relocatable` should have been `__cpp_lib_trivially_relocatable`. In #2216 I even pointed to both [the proposal](https://open-std.org/jtc1/sc22/wg21/docs/papers/2024/p1144r10.html#wording) and...