public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  archer-ratmice-compile-Wc++-compat: rename all "explicit" identifiers
@ 2010-09-15 14:27 tromey
  0 siblings, 0 replies; only message in thread
From: tromey @ 2010-09-15 14:27 UTC (permalink / raw)
  To: archer-commits

The branch, archer-ratmice-compile-Wc++-compat has been updated
       via  658f010598c2c88bf1669aa63d0975107bdb236a (commit)
      from  b57b679526c985c179359c0f71c8f13f6ddeeb7a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 658f010598c2c88bf1669aa63d0975107bdb236a
Author: Tom Tromey <tromey@redhat.com>
Date:   Wed Sep 15 08:27:32 2010 -0600

    rename all "explicit" identifiers

-----------------------------------------------------------------------

Summary of changes:
 gdb/mi/mi-cmd-var.c |    8 ++++----
 gdb/varobj.c        |    4 ++--
 gdb/varobj.h        |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

First 500 lines of diff:
diff --git a/gdb/mi/mi-cmd-var.c b/gdb/mi/mi-cmd-var.c
index 1a58020..9b52ebd 100644
--- a/gdb/mi/mi-cmd-var.c
+++ b/gdb/mi/mi-cmd-var.c
@@ -39,7 +39,7 @@ extern int varobjdebug;		/* defined in varobj.c.  */
 
 static void varobj_update_one (struct varobj *var,
 			      enum print_values print_values,
-			      int explicit);
+			      int is_explicit);
 
 static int mi_print_value_p (struct varobj *var, enum print_values print_values);
 
@@ -705,7 +705,7 @@ mi_cmd_var_update (char *command, char **argv, int argc)
       /* Get varobj handle, if a valid var obj name was specified */
       struct varobj *var = varobj_get_handle (name);
 
-      varobj_update_one (var, print_values, 1 /* explicit */);
+      varobj_update_one (var, print_values, 1 /* is_explicit */);
     }
 
   do_cleanups (cleanup);
@@ -715,14 +715,14 @@ mi_cmd_var_update (char *command, char **argv, int argc)
 
 static void
 varobj_update_one (struct varobj *var, enum print_values print_values,
-		   int explicit)
+		   int is_explicit)
 {
   struct cleanup *cleanup = NULL;
   VEC (varobj_update_result) *changes;
   varobj_update_result *r;
   int i;
   
-  changes = varobj_update (&var, explicit);
+  changes = varobj_update (&var, is_explicit);
   
   for (i = 0; VEC_iterate (varobj_update_result, changes, i, r); ++i)
     {
diff --git a/gdb/varobj.c b/gdb/varobj.c
index 4a8726f..c696e38 100644
--- a/gdb/varobj.c
+++ b/gdb/varobj.c
@@ -1681,7 +1681,7 @@ varobj_set_visualizer (struct varobj *var, const char *visualizer)
    returns TYPE_CHANGED, then it has done this and VARP will be modified
    to point to the new varobj.  */
 
-VEC(varobj_update_result) *varobj_update (struct varobj **varp, int explicit)
+VEC(varobj_update_result) *varobj_update (struct varobj **varp, int is_explicit)
 {
   int changed = 0;
   int type_changed = 0;
@@ -1695,7 +1695,7 @@ VEC(varobj_update_result) *varobj_update (struct varobj **varp, int explicit)
      changing type.  One use case for frozen varobjs is
      retaining previously evaluated expressions, and we don't
      want them to be reevaluated at all.  */
-  if (!explicit && (*varp)->frozen)
+  if (!is_explicit && (*varp)->frozen)
     return result;
 
   if (!(*varp)->root->is_valid)
diff --git a/gdb/varobj.h b/gdb/varobj.h
index ec7a5dd..5f45b8e 100644
--- a/gdb/varobj.h
+++ b/gdb/varobj.h
@@ -158,7 +158,7 @@ extern void all_root_varobjs (void (*func) (struct varobj *var, void *data),
 			      void *data);
 
 extern VEC(varobj_update_result) *varobj_update (struct varobj **varp, 
-						 int explicit);
+						 int is_explicit);
 
 extern void varobj_invalidate (void);
 


hooks/post-receive
--
Repository for Project Archer.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-15 14:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-15 14:27 [SCM] archer-ratmice-compile-Wc++-compat: rename all "explicit" identifiers tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).