Utkarsh Saxena
Utkarsh Saxena
Tried installing pylspclient ``` pip install pylspclient Collecting pylspclient Using cached pylspclient-0.0.2-py3-none-any.whl (10 kB) Installing collected packages: pylspclient Successfully installed pylspclient-0.0.2 ``` Ran `examples/clangd.py` Got: ``` Traceback (most recent call...
https://github.com/isocpp/CppCoreGuidelines/blob/4b706d9d6d/CppCoreGuidelines.md#cp53-parameters-to-coroutines-should-not-be-passed-by-reference The guideline is clear to disallow reference parameters to coroutines. But the guidance is unclear about **pointer params**. I think pointer params should be allowed as they make the...
Hello folks, This is more of an FYI that we introduced the `[[clang::coro_lifetimebound]]` annotation in clang for lifetime bound analysis of reference parameters of a coroutine. ([docs](https://clang.llvm.org/docs/AttributeReference.html#coro-lifetimebound). [RFC](https://discourse.llvm.org/t/rfc-lifetime-bound-check-for-parameters-of-coroutines/74253/19)) Example lifetime...