[llvm-branch-commits] [clang] [clang-tools-extra] [lldb] [clang] Template Specialization Resugaring - TypeDecl (PR #132441)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Mar 21 11:19:34 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r 6f705031ce3646a5699a8cfdeeeb32569409be49...e621da3ff081f9efee76ed83b1a21627e0904ed0 lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- TestIteratorFromStdModule.py 2025-03-21 18:03:03.000000 +0000
+++ TestIteratorFromStdModule.py 2025-03-21 18:19:06.368364 +0000
@@ -20,11 +20,15 @@
self.runCmd("settings set target.import-std-module true")
iter_type = "std::move_iterator<std::__wrap_iter<int *> >"
self.expect_expr("move_begin", result_type=iter_type)
- self.expect_expr("move_begin[0]", result_type="__libcpp_remove_reference_t<__reference>", result_value="1")
+ self.expect_expr(
+ "move_begin[0]",
+ result_type="__libcpp_remove_reference_t<__reference>",
+ result_value="1",
+ )
self.expect_expr("move_begin + 3 == move_end", result_value="true")
self.expect("expr move_begin++")
self.expect_expr("move_begin + 2 == move_end", result_value="true")
``````````
</details>
https://github.com/llvm/llvm-project/pull/132441
More information about the llvm-branch-commits
mailing list