diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-06 21:09:07 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-06 21:09:07 +0000 |
commit | 3398e91d3a688ea0ef2f9bf4d6cf7c2e96f6d092 (patch) | |
tree | e5214fcd8a05d4b329467434fcdea16f33d3ce7b /libstdc++/stl | |
parent | 0268b6e3fcd2080f0c1d198c1dec0a9f8fcf0eec (diff) | |
download | ppe42-gcc-3398e91d3a688ea0ef2f9bf4d6cf7c2e96f6d092.tar.gz ppe42-gcc-3398e91d3a688ea0ef2f9bf4d6cf7c2e96f6d092.zip |
typo typo fixes fixes
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19601 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/stl')
-rw-r--r-- | libstdc++/stl/pthread_alloc | 2 | ||||
-rw-r--r-- | libstdc++/stl/ropeimpl.h | 2 | ||||
-rw-r--r-- | libstdc++/stl/stl_alloc.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++/stl/pthread_alloc b/libstdc++/stl/pthread_alloc index 71df3d3b548..4ca9d9e1f71 100644 --- a/libstdc++/stl/pthread_alloc +++ b/libstdc++/stl/pthread_alloc @@ -63,7 +63,7 @@ private: // Returns an object of size n, and optionally adds to size n free list. void *refill(size_t n); - // Allocates a chunk for nobjs of size size. nobjs may be reduced + // Allocates a chunk for nobjs of size "size". nobjs may be reduced // if it is inconvenient to allocate the requested number. static char *chunk_alloc(size_t size, int &nobjs); diff --git a/libstdc++/stl/ropeimpl.h b/libstdc++/stl/ropeimpl.h index d652c815b45..b4af525c38e 100644 --- a/libstdc++/stl/ropeimpl.h +++ b/libstdc++/stl/ropeimpl.h @@ -838,7 +838,7 @@ inline bool __rope_insert_char_consumer<char>::operator() } #if !defined(_MSC_VER) && !defined(__BORLANDC__) -// I couldn't get this to work work with the VC++ version of basic_ostream. +// I couldn't get this to work with the VC++ version of basic_ostream. inline bool __rope_insert_char_consumer<wchar_t>::operator() (const wchar_t * leaf, size_t n) { diff --git a/libstdc++/stl/stl_alloc.h b/libstdc++/stl/stl_alloc.h index 0f2ba28bb98..2c3de40f61b 100644 --- a/libstdc++/stl/stl_alloc.h +++ b/libstdc++/stl/stl_alloc.h @@ -342,7 +342,7 @@ private: // Returns an object of size n, and optionally adds to size n free list. static void *refill(size_t n); - // Allocates a chunk for nobjs of size size. nobjs may be reduced + // Allocates a chunk for nobjs of size "size". nobjs may be reduced // if it is inconvenient to allocate the requested number. static char *chunk_alloc(size_t size, int &nobjs); |