[clang] [PAC][clang] Define `PointerAuthQualifier` and `PointerAuthenticationMode` (PR #84384)
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 16 06:16:31 PDT 2024
================
@@ -194,19 +358,27 @@ class Qualifiers {
FastMask = (1 << FastWidth) - 1
};
+ Qualifiers() : Mask(0), PtrAuth() {}
+
----------------
AaronBallman wrote:
```suggestion
```
Not needed; the default ctor will be automatically called and `Mask` has an inline initializer.
https://github.com/llvm/llvm-project/pull/84384
More information about the cfe-commits
mailing list