]> git.sur5r.net Git - cc65/blobdiff - src/cc65/typeconv.h
Fixed the cc65 code that handled an addition of a pointer to a 32-bit offset.
[cc65] / src / cc65 / typeconv.h
index 51d4a76e1b1325d13a33d1eb22b94ad566fdadb6..8321aded41633f640786c6053a1fdae4720478a2 100644 (file)
@@ -6,8 +6,8 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2002-2003 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
+/* (C) 2002-2008 Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
-int TypeConversion (ExprDesc* Expr, int k, type* NewType);
+void TypeConversion (ExprDesc* Expr, Type* NewType);
 /* Do an automatic conversion of the given expression to the new type. Output
- * warnings or errors where this automatic conversion is suspicious or
- * impossible.
- */
+** warnings or errors where this automatic conversion is suspicious or
+** impossible.
+*/
 
-int TypeCast (ExprDesc* Expr);
-/* Handle an explicit cast. The function returns true if the resulting
- * expression is an lvalue and false if not.
- */
+void TypeCast (ExprDesc* Expr);
+/* Handle an explicit cast. */
 
 
 
 /* End of typeconv.h */
-#endif
-
-
 
+#endif