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]

libstdc++-v3 PATCH: bitset


2000-08-23  Geoff Berry  <geoffb@bops.com>

	* bits/std_bitset.h: Include <bits/std_algorithm.h> since `min' is
	used.
	

Index: libstdc++-v3/bits/std_bitset.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/bits/std_bitset.h,v
retrieving revision 1.2
diff -c -3 -p -r1.2 std_bitset.h
*** std_bitset.h	2000/06/27 20:57:10	1.2
--- std_bitset.h	2000/08/23 21:56:12
***************
*** 30,35 ****
--- 30,36 ----
  // returns a reference to a bit, again without doing any range checking.
  
  
+ #include <bits/std_algorithm.h>   // for min
  #include <bits/std_cstddef.h>     // for size_t
  #include <bits/std_cstring.h>     // for memset
  #include <bits/std_string.h>


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