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 4c55505 commit e4060d3Copy full SHA for e4060d3
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