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 3ebb91d commit 6615ec6Copy full SHA for 6615ec6
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