Will Wray
Will Wray
Hi, Great to see this work towards standards-conforming modules in Clang, thanks. It'd be useful to have a little more overview in the readme, or elsewhere, on the overall readiness...
```c++ // nicer with new if syntax: if (optional ofoo = parseFoo(str); ofoo) use(*ofoo); ``` Even nicer, old style, without the extraneous ofoo conditional? ```c++ if (optional ofoo = parseFoo(str))...
## Expected Behavior This code should work, without taking copies of the arguments: ``` eq( std::make_unique(), std::unique_ptr{new int} ); expect ( std::make_unique() == type< std::unique_ptr >); ``` (`unique_ptr` is used...
## Expected Behavior ``` expect( type != type ); ``` Expect to evaluate false and fail ## Actual Behavior Evaluates true and passes ## Steps to Reproduce the Problem See...
Under https://boost-ext.github.io/ut/#quick-start the link https://bit.ly/ut-quick-start (slides) opens an unresponsive intro slide with empty bullet points From the cppnow youtube video https://www.youtube.com/watch?v=kn2b9QjesAg&ab_channel=CppNow the slides link Slides: https://cppnow.org/history/2021/talks/ requires a search to...
## Expected Behavior Exactly as shown in the image - type in the code as pictured and get ``` Running "sum"... test.cpp:11:FAILED [(3 > 0 and 41 == 42)] FAILED...
Reflection of member array types is possible by refining magic_get methods. ## Recursive scheme Here's a scheme for finding an aggregate's member types one at a time: Given an aggregate-initializable...
Guessing that these are GCC11 related, but haven't checked other versions. `gcc --version` gcc (GCC) 11.0.0 20210225 (Red Hat 11.0.0-0) `ninja -C build -f build-Release.ninja` ``` In file included from...
There are many large build artifacts in the repo history that appear to be vestigial. Time for a Spring clean? On first push, GitHub warns: ``` remote: warning: GH001: Large...
AAL CMakeLists.txt was bumped to cmake >= 3.18 This updates the CONTRIBUTING doc The 2nd commit fixes markdown lint warnings