Get rid of the CastInfo struct.

llvm-svn: 81839
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h
index d2034ce..bb2a5b2 100644
--- a/clang/lib/Sema/Sema.h
+++ b/clang/lib/Sema/Sema.h
@@ -3289,9 +3289,8 @@
   /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit
   /// cast.  If there is already an implicit cast, merge into the existing one.
   /// If isLvalue, the result of the cast is an lvalue.
-  void ImpCastExprToType(Expr *&Expr, QualType Type,
-                         const CastExpr::CastInfo &Info =
-                         CastExpr::CastInfo(CastExpr::CK_Unknown),
+  void ImpCastExprToType(Expr *&Expr, QualType Type, 
+                         CastExpr::CastKind Kind = CastExpr::CK_Unknown,
                          bool isLvalue = false);
 
   // UsualUnaryConversions - promotes integers (C99 6.3.1.1p2) and converts