This is the mail archive of the libstdc++@sources.redhat.com mailing list for the libstdc++ project.


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

[PATCH] basic_file.h



This patch remove an extra qualifier in basic_file.h. This causes a 
lot of spurious messages in the gcc testsuite because it use the 
pedantic option.

ChangeLog:

2000-09-21 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>

	* bits/basic_file.h (_M_open_mode): Remove extra qualifier.

Index: libstdc++-v3/bits/basic_file.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/bits/basic_file.h,v
retrieving revision 1.5
diff -c -3 -p -r1.5 basic_file.h
*** basic_file.h	2000/08/09 07:33:38	1.5
--- basic_file.h	2000/09/21 18:41:23
*************** namespace std {
*** 128,135 ****
        __basic_file(__c_lock* __lock = 0);
        
        void 
!       __basic_file::_M_open_mode(ios_base::openmode __mode, int& __p_mode, 
! 				 int& __rw_mode);
        
        // Eqivalent to the normal fopen function.
        __basic_file* 
--- 128,134 ----
        __basic_file(__c_lock* __lock = 0);
        
        void 
!       _M_open_mode(ios_base::openmode __mode, int& __p_mode, int& __rw_mode);
        
        // Eqivalent to the normal fopen function.
        __basic_file* 

 --------------------------------------------------------------------
 Theodore Papadopoulo
 Email: Theodore.Papadopoulo@sophia.inria.fr Tel: (33) 04 92 38 76 01
 --------------------------------------------------------------------



PGP signature


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