[PATCH] D132415: [LLDB] Add data formatter for std::coroutine_handle
Adrian Vogelsgesang via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 24 02:25:55 PDT 2022
avogelsgesang added inline comments.
================
Comment at: lldb/source/Plugins/Language/CPlusPlus/Coroutines.cpp:39
+ CompilerType coro_func_type = ast_ctx.CreateFunctionType(
+ /*result_type*/ void_type, /*args*/ &void_type, /*num_args*/ 1,
+ /*is_variadic*/ false, /*qualifiers*/ 0);
----------------
shafik wrote:
> `/*result_type=*/` see https://clang.llvm.org/extra/clang-tidy/checks/bugprone/argument-comment.html
>
> applies to the rest of them as well.
done
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132415/new/
https://reviews.llvm.org/D132415
More information about the cfe-commits
mailing list