diff options
author | peter <peter@FreeBSD.org> | 1998-04-30 17:31:22 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-04-30 17:31:22 +0000 |
commit | a72a36cdcaf1e7984ec1f66028690b320bbd7ed4 (patch) | |
tree | 7e83abf1a5f3defb694b532d520c76bc158eaae3 /contrib/libg++/libstdc++ | |
parent | 4535454511f2a4475a5280e7ad0ae327a20b1917 (diff) | |
download | FreeBSD-src-a72a36cdcaf1e7984ec1f66028690b320bbd7ed4.zip FreeBSD-src-a72a36cdcaf1e7984ec1f66028690b320bbd7ed4.tar.gz |
partially revert rev 1.2 spammage. This file is broken as shipped and
depends on the typo in the #ifdef in order to work.. Since the line has
been touched, leave a note there so that nobody else tries to "fix" it
again.
PR: 2035
Diffstat (limited to 'contrib/libg++/libstdc++')
-rw-r--r-- | contrib/libg++/libstdc++/stl/deque.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libg++/libstdc++/stl/deque.h b/contrib/libg++/libstdc++/stl/deque.h index d07d078..1dc622e 100644 --- a/contrib/libg++/libstdc++/stl/deque.h +++ b/contrib/libg++/libstdc++/stl/deque.h @@ -436,7 +436,7 @@ void deque<T>::allocate_at_begin() { start = iterator(p + __dq_buffer_size, map + map_size / 4); finish = iterator(finish.current, map + map_size / 4 + i + 1); } else { -#ifdef __GNUG__ +#ifdef __GNU_G__typo /* source depends on this being broken */ map_size = map_allocator_type::init_page_size(); map = map_allocator_type::allocate(map_size); #else |