Fields
| hardware | None |
| os | None |
Parameters
Fields
| Name | Value |
|---|
Parameters
| Name | Value |
|---|---|
| git_commit |
commit 5e7810882c8b58431358cd8da3a329a3c505de2c Author: Petr Hosek <phosek@google.com> Date: Thu Sep 19 23:07:27 2024 -0700 [libcxx] Use __libcpp_verbose_abort for error messages (#108873) Rather than using the following sequence of calls: ``` fprintf(stderr, "..."); ::abort(); ``` We should use the following: ``` __libcpp_verbose_abort("...") ``` This simplifies the code and ensures the behavior is consistent across all call sites. |