diff options
author | John McCall <rjmccall@apple.com> | 2010-11-16 05:46:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-11-16 05:46:29 +0000 |
commit | e2b768877b77fa4e00171ee6e6443722e0f3d111 (patch) | |
tree | 725aced6f8c3f08f6a566c42cc480672a0694ead /lib/AST/Expr.cpp | |
parent | 641ca7d01441c34566756744838abb8faf1356aa (diff) |
Kill CK_Unknown and flesh out the documentation for the existing CastKinds.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 6ae334ed25..e36c02f3a9 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -740,8 +740,6 @@ MemberExpr *MemberExpr::Create(ASTContext &C, Expr *base, bool isarrow, const char *CastExpr::getCastKindName() const { switch (getCastKind()) { - case CK_Unknown: - return "Unknown"; case CK_Dependent: return "Dependent"; case CK_BitCast: |