Minor coding style fixes in varobj.h
authorJoel Brobecker <brobecker@adacore.com>
Fri, 25 Oct 2013 03:18:50 +0000 (07:18 +0400)
committerTom Tromey <tromey@sourceware.org>
Fri, 25 Oct 2013 14:03:00 +0000 (14:03 +0000)
No actual code change, just a minor style fix.

gdb/ChangeLog:

        * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
        and parameter name.

gdb/ChangeLog
gdb/varobj.h

index b0b6ff8..65381a3 100644 (file)
@@ -1,3 +1,8 @@
+2013-10-25  Joel Brobecker  <brobecker@adacore.com>
+
+       * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
+       and parameter name.
+
 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
 
        * linux-tdep.c (linux_corefile_thread_callback): Propagate any
index e32c6ef..7efaedb 100644 (file)
@@ -177,26 +177,26 @@ struct varobj
 struct lang_varobj_ops
 {
   /* The number of children of PARENT.  */
-  int (*number_of_children) (struct varobj * parent);
+  int (*number_of_children) (struct varobj *parent);
 
   /* The name (expression) of a root varobj.  */
-  char *(*name_of_variable) (struct varobj * parent);
+  char *(*name_of_variable) (struct varobj *parent);
 
   /* The name of the INDEX'th child of PARENT.  */
-  char *(*name_of_child) (struct varobj * parent, int index);
+  char *(*name_of_child) (struct varobj *parent, int index);
 
   /* Returns the rooted expression of CHILD, which is a variable
      obtain that has some parent.  */
-  char *(*path_expr_of_child) (struct varobj * child);
+  char *(*path_expr_of_child) (struct varobj *child);
 
   /* The ``struct value *'' of the INDEX'th child of PARENT.  */
-  struct value *(*value_of_child) (struct varobj * parent, int index);
+  struct value *(*value_of_child) (struct varobj *parent, int index);
 
   /* The type of the INDEX'th child of PARENT.  */
-  struct type *(*type_of_child) (struct varobj * parent, int index);
+  struct type *(*type_of_child) (struct varobj *parent, int index);
 
   /* The current value of VAR.  */
-  char *(*value_of_variable) (struct varobj * var,
+  char *(*value_of_variable) (struct varobj *var,
                              enum varobj_display_formats format);
 
   /* Return non-zero if changes in value of VAR must be detected and