We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getTrailingObjects
1 parent 66820c7 commit c2d45d1Copy full SHA for c2d45d1
clang/lib/CIR/CodeGen/CIRGenFunctionInfo.h
@@ -76,10 +76,8 @@ class CIRGenFunctionInfo final
76
77
unsigned numArgs;
78
79
- CanQualType *getArgTypes() { return getTrailingObjects<CanQualType>(); }
80
- const CanQualType *getArgTypes() const {
81
- return getTrailingObjects<CanQualType>();
82
- }
+ CanQualType *getArgTypes() { return getTrailingObjects(); }
+ const CanQualType *getArgTypes() const { return getTrailingObjects(); }
83
84
CIRGenFunctionInfo() : required(RequiredArgs::All) {}
85
0 commit comments