Fields
| hardware | None |
| os | None |
Parameters
Fields
| Name | Value |
|---|
Parameters
| Name | Value |
|---|---|
| git_commit |
commit 7c69491e486a93e8b86a390a0d5d580eeca7f7d5 Author: Nikolas Klauser <nikolasklauser@berlin.de> Date: Mon Nov 4 17:48:42 2024 +0100 [libc++] Simplify aligned_storage (#114665) The main template of `aligned_storage` is only ever used when we have extremely overaligned types (> 16384), so we effectively only ever use the specializations currently. This means that we only instantiate the main template for overaligned types. Instead of doing this dance, we can just define the main template to use `_ALIGNAS`, just like the specializations. This makes the implementation of `aligned_storage` significantly less confusing. |