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
2 parents 13f1830 + 6615ec6 commit 4a94fafCopy full SHA for 4a94faf
clang/include/clang/AST/ExprObjC.h
@@ -217,12 +217,10 @@ class ObjCArrayLiteral final
217
SourceRange getSourceRange() const LLVM_READONLY { return Range; }
218
219
/// Retrieve elements of array of literals.
220
- Expr **getElements() { return getTrailingObjects<Expr *>(); }
+ Expr **getElements() { return getTrailingObjects(); }
221
222
223
- const Expr * const *getElements() const {
224
- return getTrailingObjects<Expr *>();
225
- }
+ const Expr *const *getElements() const { return getTrailingObjects(); }
226
227
/// getNumElements - Return number of elements of objective-c array literal.
228
unsigned getNumElements() const { return NumElements; }
0 commit comments