diff --git a/clang/include/clang/AST/ExprObjC.h b/clang/include/clang/AST/ExprObjC.h index f87fa85569c44..3d9b3c4585e8a 100644 --- a/clang/include/clang/AST/ExprObjC.h +++ b/clang/include/clang/AST/ExprObjC.h @@ -217,12 +217,10 @@ class ObjCArrayLiteral final SourceRange getSourceRange() const LLVM_READONLY { return Range; } /// Retrieve elements of array of literals. - Expr **getElements() { return getTrailingObjects(); } + Expr **getElements() { return getTrailingObjects(); } /// Retrieve elements of array of literals. - const Expr * const *getElements() const { - return getTrailingObjects(); - } + const Expr *const *getElements() const { return getTrailingObjects(); } /// getNumElements - Return number of elements of objective-c array literal. unsigned getNumElements() const { return NumElements; }