[clang] [clang][NFC] Run `modernize-use-using` check over all the code (PR #149934)
Nikolas Klauser via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 25 07:18:50 PDT 2025
================
@@ -21,7 +21,7 @@ namespace driver {
namespace tools {
namespace mips {
-typedef enum { Legacy = 1, Std2008 = 2 } IEEE754Standard;
+using IEEE754Standard = enum { Legacy = 1, Std2008 = 2 };
----------------
philnik777 wrote:
```suggestion
enum IEEE754Standard { Legacy = 1, Std2008 = 2 };
```
https://github.com/llvm/llvm-project/pull/149934
More information about the cfe-commits
mailing list