Added Self to Write After Approval
[deliverable/binutils-gdb.git] / libiberty / cp-demangle.c
index 5ee8a2b457c8e635b0a365f8e21cf468e50b2472..457a09f4c19e4efd3344cb95751bc4300b277178 100644 (file)
@@ -1557,11 +1557,11 @@ demangle_operator_name (dm, short_name, num_args)
   struct operator_code
   {
     /* The mangled code for this operator.  */
-    const char *code;
+    const char *const code;
     /* The source name of this operator.  */
-    const char *name;
+    const char *const name;
     /* The number of arguments this operator takes.  */
-    int num_args;
+    const int num_args;
   };
 
   static const struct operator_code operators[] = 
@@ -3945,7 +3945,7 @@ print_usage (fp, exit_value)
 }
 
 /* Option specification for getopt_long.  */
-static struct option long_options[] = 
+static const struct option long_options[] = 
 {
   { "help",    no_argument, NULL, 'h' },
   { "strict",  no_argument, NULL, 's' },
This page took 0.043655 seconds and 4 git commands to generate.