This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

C++ PATCH for typo in comment




-- 
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

1999-04-11  Mark Mitchell  <mark@codesourcery.com>

	* decl.c (push_binding): Fix typo in comment.

Index: decl.c
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/cp/decl.c,v
retrieving revision 1.337
diff -c -p -r1.337 decl.c
*** decl.c	1999/04/09 16:05:47	1.337
--- decl.c	1999/04/11 18:37:45
*************** push_binding (id, decl, level)
*** 1100,1106 ****
    INHERITED_VALUE_BINDING_P (binding) = 0;
    LOCAL_BINDING_P (binding) = (level != class_binding_level);
  
!   /* And put it on the front of the ilst of bindings for ID.  */
    TREE_CHAIN (binding) = IDENTIFIER_BINDING (id);
    IDENTIFIER_BINDING (id) = binding;
  }
--- 1100,1106 ----
    INHERITED_VALUE_BINDING_P (binding) = 0;
    LOCAL_BINDING_P (binding) = (level != class_binding_level);
  
!   /* And put it on the front of the list of bindings for ID.  */
    TREE_CHAIN (binding) = IDENTIFIER_BINDING (id);
    IDENTIFIER_BINDING (id) = binding;
  }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]