diff options
author | Patrick Beard <pcbeard@mac.com> | 2012-04-19 00:25:12 +0000 |
---|---|---|
committer | Patrick Beard <pcbeard@mac.com> | 2012-04-19 00:25:12 +0000 |
commit | 0caa39474bfc9ca1b4ce64b3318ddaa1d8975232 (patch) | |
tree | ed4816aeb2e1961c1a24293ddf74e1c8826a0d43 /clang/lib/AST/ExprClassification.cpp | |
parent | 201ba5fa00c789edd594791176f6771f10e85dd1 (diff) | |
download | bcm5719-llvm-0caa39474bfc9ca1b4ce64b3318ddaa1d8975232.tar.gz bcm5719-llvm-0caa39474bfc9ca1b4ce64b3318ddaa1d8975232.zip |
Implements boxed expressions for Objective-C. <rdar://problem/10194391>
llvm-svn: 155082
Diffstat (limited to 'clang/lib/AST/ExprClassification.cpp')
-rw-r--r-- | clang/lib/AST/ExprClassification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ExprClassification.cpp b/clang/lib/AST/ExprClassification.cpp index b091e19a8a9..f958aded8d3 100644 --- a/clang/lib/AST/ExprClassification.cpp +++ b/clang/lib/AST/ExprClassification.cpp @@ -158,7 +158,7 @@ static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) { case Expr::ObjCSelectorExprClass: case Expr::ObjCProtocolExprClass: case Expr::ObjCStringLiteralClass: - case Expr::ObjCNumericLiteralClass: + case Expr::ObjCBoxedExprClass: case Expr::ObjCArrayLiteralClass: case Expr::ObjCDictionaryLiteralClass: case Expr::ObjCBoolLiteralExprClass: |