[Lldb-commits] [PATCH] D132415: [LLDB] Add data formatter for std::coroutine_handle

Shafik Yaghmour via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 23 21:12:53 PDT 2022


shafik 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);
----------------
`/*result_type=*/` see https://clang.llvm.org/extra/clang-tidy/checks/bugprone/argument-comment.html

applies to the rest of them as well.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132415/new/

https://reviews.llvm.org/D132415



More information about the lldb-commits mailing list