Kazu Hirata
50faea28fb
[llvm] Use conventional enum declarations (NFC) ( #166318 )
...
This patch replaces:
using Foo = enum { A, B, C };
with the more conventional:
enum Foo { A, B, C };
These two enum declaration styles are not identical, but their
difference does not matter in these .cpp files. With the "using Foo"
style, the enum is unnamed and cannot be forward-declared, whereas the
conventional style creates a named enum that can be. Since these
changes are confined to .cpp files, this distinction has no practical
impact here.
2025-11-04 07:12:53 -08:00
..
2025-11-02 00:12:33 +00:00
2025-09-19 13:50:07 +00:00
2025-09-23 09:05:10 -07:00
2025-06-17 13:28:45 -07:00
2025-09-04 14:48:36 +00:00
2025-08-21 05:21:42 +03:00
2025-09-19 13:50:07 +00:00
2025-07-12 15:46:12 -07:00
2025-04-21 04:21:37 +03:00
2025-05-26 14:57:16 -07:00
2025-08-21 05:21:42 +03:00
2025-09-12 09:18:50 +00:00
2025-02-24 09:55:34 -08:00
2025-09-14 10:56:51 +08:00
2024-11-16 12:13:26 -08:00
2025-09-02 09:57:33 -07:00
2025-09-12 09:18:50 +00:00
2025-09-12 09:18:50 +00:00
2025-05-09 07:40:02 +08:00
2025-04-28 09:26:34 -07:00
2025-05-06 18:01:17 -07:00
2025-09-19 13:50:07 +00:00
2025-09-08 03:41:22 +00:00
2025-07-15 13:22:33 -04:00
2025-07-15 13:22:33 -04:00
2025-09-28 10:49:40 +08:00
2025-08-19 09:26:38 +02:00
2025-08-19 09:26:38 +02:00
2025-08-19 09:26:38 +02:00
2025-09-14 10:56:51 +08:00
2025-07-15 13:22:33 -04:00
2025-09-25 23:29:13 -04:00
2025-11-04 07:12:53 -08:00
2024-11-16 12:13:26 -08:00
2025-08-21 05:21:42 +03:00
2025-07-15 13:22:33 -04:00
2025-09-08 12:12:19 +09:00
2025-05-14 19:52:31 +08:00
2025-10-10 16:40:22 +08:00
2024-11-16 20:55:33 -08:00
2024-11-18 10:06:13 +01:00
2025-10-16 06:52:28 -07:00
2025-10-11 10:58:48 +09:00
2025-06-17 09:36:53 -07:00
2025-06-15 18:46:51 -07:00
2024-11-16 21:42:18 -08:00
2025-05-23 08:30:29 -07:00
2025-05-23 08:30:29 -07:00
2025-05-26 14:57:16 -07:00
2025-10-25 06:23:43 -07:00
2025-09-28 10:49:40 +08:00
2025-09-19 13:50:07 +00:00
2025-09-19 13:50:07 +00:00
2025-05-04 01:18:19 -04:00
2025-07-12 15:46:12 -07:00
2025-09-12 19:22:02 +09:00
2025-02-24 09:55:34 -08:00
2025-04-28 11:09:43 +10:00
2025-02-16 19:10:49 -08:00
2025-09-28 10:49:40 +08:00
2025-01-24 11:23:34 +08:00
2024-12-21 05:29:51 +03:00
2024-12-21 05:29:51 +03:00
2025-09-12 09:18:50 +00:00
2025-09-12 09:18:50 +00:00
2025-09-10 11:43:53 +00:00
2025-07-15 13:22:33 -04:00
2025-09-11 11:05:29 -07:00
2024-11-14 13:30:05 -08:00
2025-06-17 09:36:53 -07:00
2025-04-22 06:27:29 +03:00
2025-06-15 08:51:59 +01:00