Nerixyz
9a632fd684
[LLDB] Fix MS STL variant with non-trivial types ( #171489 )
...
When using `std::variant` with non-trivial types, we need to go through
multiple bases to find the `_Which` member. The MSVC STL implements this
in `xsmf_control.h` which conditionally adds/deletes copy/move
constructors/operators.
We now go to `_Variant_base` (the holder of `_Which`). This inherits
from `_Variant_storage`, which is our entry point to finding the n-th
storage (going through `_Tail`).
2026-01-12 11:40:12 +01:00
..
2025-12-09 16:02:40 -08:00
2025-03-17 14:30:39 -07:00
2025-12-09 16:02:40 -08:00
2025-09-08 22:48:34 +01:00
2025-12-10 16:26:25 -08:00
2025-12-15 14:04:02 +00:00
2025-09-04 13:21:24 -07:00
2024-12-17 13:23:13 +00:00
2026-01-12 11:40:12 +01:00
2025-02-20 13:23:03 +01:00
2025-05-13 17:52:23 +02:00
2025-12-14 23:54:25 +02:00
2025-05-27 18:41:16 -07:00
2026-01-09 12:52:58 -06:00
2025-05-27 18:41:16 -07:00
2025-09-04 16:37:41 -07:00
2025-10-01 15:40:42 -07:00
2025-05-13 17:52:23 +02:00
2025-05-27 18:41:16 -07:00
2025-05-27 18:41:16 -07:00
2025-05-27 18:41:16 -07:00
2025-08-01 12:51:59 -07:00
2025-02-28 14:59:35 +00:00
2025-10-31 10:33:37 +01:00
2025-09-04 16:37:41 -07:00
2025-04-13 23:21:52 +01:00
2025-07-31 13:10:04 -07:00
2025-09-18 08:20:09 -07:00
2025-08-19 10:49:23 -07:00
2025-05-13 17:52:23 +02:00
2025-06-23 18:02:58 +01:00
2025-07-18 13:05:15 -07:00
2025-06-26 10:45:11 -07:00
2025-09-10 20:26:36 +01:00
2025-06-02 14:01:45 +04:00
2025-12-18 23:28:29 +01:00
2025-12-05 23:57:54 +00:00
2024-11-15 00:56:34 -08:00
2025-10-01 21:14:23 +00:00
2025-12-01 18:30:31 +00:00
2025-07-31 13:10:04 -07:00
2025-06-03 09:38:22 -07:00
2025-08-03 00:01:19 +01:00
2025-02-28 14:59:35 +00:00
2025-11-11 10:43:43 +00:00
2025-09-08 22:48:34 +01:00
2025-09-08 22:48:34 +01:00
2025-11-11 18:31:57 -08:00
2025-09-15 16:55:00 +00:00
2025-10-27 10:25:58 -07:00
2025-05-21 17:38:35 -07:00
2025-12-09 16:02:40 -08:00