2003-01-21 Nick Drochak <ndrochak@gol.com>
authorNick Drochak <nickd@mono-cvs.ximian.com>
Tue, 21 Jan 2003 04:17:14 +0000 (04:17 -0000)
committerNick Drochak <nickd@mono-cvs.ximian.com>
Tue, 21 Jan 2003 04:17:14 +0000 (04:17 -0000)
* cs-tokenizer.cs:
* pending.cs:
* typemanager.cs: Remove compiler warnings

svn path=/trunk/mcs/; revision=10767

mcs/mcs/cs-tokenizer.cs
mcs/mcs/pending.cs
mcs/mcs/typemanager.cs

index f53c022aed5f87f2093756ff93034550ea7ec761..22b47d78f427ff3db4aeae16d896cebbcd59e156 100755 (executable)
@@ -562,8 +562,6 @@ namespace Mono.CSharp
                \r
                void hex_digits (int c)\r
                {\r
-                       int d;\r
-\r
                        if (c != -1)\r
                                number_builder [number_pos++] = (char) c;\r
                        \r
index 03a5771bce08254a6104c1feda2cdc99d03418a1..b2f99f026d6fe6c7f0cde16e73dc188f9f48db18 100755 (executable)
@@ -232,7 +232,6 @@ namespace Mono.CSharp {
                        // Now, we have to extract the interfaces implements by our parents, and
                        // remove them from the implementing_ifaces array.
                        //
-                       int removed = 0;
                        for (Type t = type_builder.BaseType; t != null; t = t.BaseType){
                                Type [] base_ifaces = t.GetInterfaces ();
                                        
index 997d6879e7b45a1ee0a2bd6b1ed81c1114e7bb87..fa67b683cdbdedfb2378eb31f5c9a374f1e604ac 100755 (executable)
@@ -720,6 +720,7 @@ public class TypeManager {
                }
        }
        
+#if false
        public static void GetAllTypes ()
        {
                Hashtable namespaces = new Hashtable ();
@@ -734,7 +735,7 @@ public class TypeManager {
                        }
                }
        }
-
+#endif
        
        /// <summary>
        ///   Returns the C# name of a type if possible, or the full type name otherwise