Andrey

Results 7 issues of Andrey

Repro: ```cpp int(*f)(int) = [](auto t) -> decltype([=] { return t; } ()) { return t; }; ``` Stack dump: ```console Stack dump: 0. Program arguments: /opt/compiler-explorer/clang-14.0.0/bin/clang++ -gdwarf-4 -g -o...

clang:frontend
crash

https://github.com/facebookexperimental/libunifex/blob/master/doc/overview.md#heterogeneous-results > However, coroutines currently have the limitation that the return-type of a `co_await` expression can only be a single type (it is deduced from the return-type of the `await_ready()`...

Собственно, идея в заголовке. Черновик (очень-очень сырой) proposal-а содержит [мотивацию](https://github.com/AndreyG/cpp-papers/blob/main/span-of-incomplete-element-type.md#motivation-and-scope), так что просто повторю ее здесь. Сейчас (в C++20) такой естественный код не валиден: ```cpp class Element; class Storage {...

https://github.com/libgit2/libgit2/blob/main/examples/commit.c

task

For example, following program ``` #include int main() { boost::numeric::interval::traits_type::rounding _; } ``` will work fine if is built with gcc using '-frounding-math', but will fail otherwise. Running on Valgrind...