This is the mail archive of the gcc-cvs@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]
Other format: [Raw text]

r169704 - in /branches/google/integration/libst...


Author: dnovillo
Date: Wed Feb  2 18:06:47 2011
New Revision: 169704

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=169704
Log:
2011-01-30  Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/36104 part four
	* include/bits/c++config (_GLIBCXX_STD): Remove.
	(_GLIBCXX_STD_D, _GLIBCXX_PR): Now _GLIBCXX_STD_C.
	(_GLIBCXX_P): Now _GLIBCXX_STD_A.
	(_GLIBCXX_NAMESPACE_DEBUG, _GLIBCXX_NAMESPACE_PARALLEL,
	 _GLIBCXX_NAMESPACE_PROFILE, _GLIBCXX_NAMESPACE_VERSION): Remove.
	(_GLIBCXX_INLINE_DEBUG, _GLIBCXX_INLINE_PARALLEL,
	 _GLIBCXX_INLINE_PROFILE): Remove.
	(_GLIBCXX_BEGIN_NAMESPACE(X)): Remove.
	(_GLIBCXX_END_NAMESPACE): Remove.
	(_GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)): Remove.
	(_GLIBCXX_END_NESTED_NAMESPACE): Remove.
	(_GLIBCXX_BEGIN_NAMESPACE_ALGO): Add.
	(_GLIBCXX_END_NAMESPACE_ALGO): Add.
	(_GLIBCXX_BEGIN_NAMESPACE_CONTAINER): Add.
	(_GLIBCXX_END_NAMESPACE_CONTAINER): Add.
	(_GLIBCXX_BEGIN_NAMESPACE_VERSION): Add.
	(_GLIBCXX_END_NAMESPACE_VERSION): Add.
	(_GLIBCXX_BEGIN_LDBL_NAMESPACE): To _GLIBCXX_BEGIN_NAMESPACE_LDBL.
	(_GLIBCXX_END_LDBL_NAMESPACE): To _GLIBCXX_END_NAMESPACE_LDBL.
	(_GLIBCXX_VISIBILITY_ATTR): Revert to _GLIBCXX_VISIBILITY.
	* include/*: Use new macros for namespace scope.
	* config/*: Same.
	* src/*: Same.

	* src/Makefile.am (sources): Remove debug_list.cc, add
	compatibility-debug_list-2.cc.
	(parallel_sources): Remove parallel_list.cc, add
	compatibility-parallel_list-2.cc.
	(compatibility-parallel_list-2.[o,lo]): New rule.
	* src/Makefile.in: Regenerate.
	* src/debug_list.cc: Remove.
	* src/parallel_list.cc: Remove.
	* src/compatibility-list-2.cc: New.
	* src/compatibility-debug_list-2.cc: New.
	* src/compatibility-parallel_list-2.cc: New.

	* doc/doxygen/user.cfg.in: Adjust macros.

	* testsuite/20_util/auto_ptr/assign_neg.cc: Adjust line numbers, macros.
	* testsuite/20_util/declval/requirements/1_neg.cc: Same.
	* testsuite/20_util/duration/requirements/typedefs_neg1.cc: Same.
	* testsuite/20_util/duration/requirements/typedefs_neg2.cc: Same.
	* testsuite/20_util/duration/requirements/typedefs_neg3.cc: Same.
	* testsuite/20_util/forward/c_neg.cc: Same.
	* testsuite/20_util/forward/f_neg.cc: Same.
	* testsuite/20_util/make_signed/requirements/typedefs_neg.cc: Same.
	* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc: Same.
	* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Same.
	* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
	* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Same.
	* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Same.
	* testsuite/23_containers/deque/requirements/dr438/assign_neg.cc: Same.
	* testsuite/23_containers/deque/requirements/dr438/
	constructor_1_neg.cc: Same.
	* testsuite/23_containers/deque/requirements/dr438/
	constructor_2_neg.cc: Same.
	* testsuite/23_containers/deque/requirements/dr438/insert_neg.cc: Same.
	* testsuite/23_containers/forward_list/capacity/1.cc: Same.
	* testsuite/23_containers/forward_list/requirements/dr438/
	assign_neg.cc: Same.
	* testsuite/23_containers/forward_list/requirements/dr438/
	constructor_1_neg.cc: Same.
	* testsuite/23_containers/forward_list/requirements/dr438/
	constructor_2_neg.cc: Same.
	* testsuite/23_containers/forward_list/requirements/dr438/
	insert_neg.cc: Same.
	* testsuite/23_containers/list/capacity/29134.cc: Same.
	* testsuite/23_containers/list/requirements/dr438/assign_neg.cc: Same.
	* testsuite/23_containers/list/requirements/dr438/
	constructor_1_neg.cc: Same.
	* testsuite/23_containers/list/requirements/dr438/
	constructor_2_neg.cc: Same.
	* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
	* testsuite/23_containers/vector/bool/capacity/29134.cc: Same.
	* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: Same.
	* testsuite/23_containers/vector/requirements/dr438/assign_neg.cc: Same.
	* testsuite/23_containers/vector/requirements/dr438/
	constructor_1_neg.cc: Same.
	* testsuite/23_containers/vector/requirements/dr438/
	constructor_2_neg.cc: Same.
	* testsuite/23_containers/vector/requirements/dr438/insert_neg.cc: Same.
	* testsuite/25_algorithms/sort/35588.cc: Same.
	* testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
	* testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
	* testsuite/ext/profile/mutex_extensions_neg.cc: Same.
	* testsuite/ext/profile/profiler_algos.cc: Same.
	* testsuite/ext/type_traits/add_unsigned_floating_neg.cc: Same.
	* testsuite/ext/type_traits/add_unsigned_integer_neg.cc: Same.
	* testsuite/ext/type_traits/remove_unsigned_floating_neg.cc: Same.
	* testsuite/ext/type_traits/remove_unsigned_integer_neg.cc: Same.
	* testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc: Same.

Added:
    branches/google/integration/libstdc++-v3/src/compatibility-debug_list-2.cc
      - copied, changed from r169703, branches/google/integration/libstdc++-v3/src/debug_list.cc
    branches/google/integration/libstdc++-v3/src/compatibility-list-2.cc
      - copied, changed from r169703, branches/google/integration/libstdc++-v3/src/compatibility-list.cc
    branches/google/integration/libstdc++-v3/src/compatibility-parallel_list-2.cc
      - copied, changed from r169703, branches/google/integration/libstdc++-v3/src/compatibility-parallel_list.cc
Removed:
    branches/google/integration/libstdc++-v3/src/debug_list.cc
    branches/google/integration/libstdc++-v3/src/parallel_list.cc
Modified:
    branches/google/integration/libstdc++-v3/ChangeLog
    branches/google/integration/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
    branches/google/integration/libstdc++-v3/config/abi/pre/gnu.ver
    branches/google/integration/libstdc++-v3/config/cpu/cris/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/generic/atomicity_builtins/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/generic/atomicity_mutex/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/hppa/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/i386/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/i486/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/ia64/atomic_word.h
    branches/google/integration/libstdc++-v3/config/cpu/m68k/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/sh/atomicity.h
    branches/google/integration/libstdc++-v3/config/cpu/sparc/atomicity.h
    branches/google/integration/libstdc++-v3/config/io/basic_file_stdio.cc
    branches/google/integration/libstdc++-v3/config/io/basic_file_stdio.h
    branches/google/integration/libstdc++-v3/config/io/c_io_stdio.h
    branches/google/integration/libstdc++-v3/config/locale/darwin/ctype_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/c_locale.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/c_locale.h
    branches/google/integration/libstdc++-v3/config/locale/generic/codecvt_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/collate_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/ctype_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/messages_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/messages_members.h
    branches/google/integration/libstdc++-v3/config/locale/generic/monetary_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/numeric_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/time_members.cc
    branches/google/integration/libstdc++-v3/config/locale/generic/time_members.h
    branches/google/integration/libstdc++-v3/config/locale/gnu/c_locale.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/c_locale.h
    branches/google/integration/libstdc++-v3/config/locale/gnu/codecvt_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/collate_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/ctype_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/messages_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/messages_members.h
    branches/google/integration/libstdc++-v3/config/locale/gnu/monetary_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/numeric_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/time_members.cc
    branches/google/integration/libstdc++-v3/config/locale/gnu/time_members.h
    branches/google/integration/libstdc++-v3/config/locale/ieee_1003.1-2001/c_locale.cc
    branches/google/integration/libstdc++-v3/config/locale/ieee_1003.1-2001/c_locale.h
    branches/google/integration/libstdc++-v3/config/locale/ieee_1003.1-2001/messages_members.cc
    branches/google/integration/libstdc++-v3/config/locale/ieee_1003.1-2001/messages_members.h
    branches/google/integration/libstdc++-v3/config/os/aix/atomicity.h
    branches/google/integration/libstdc++-v3/config/os/aix/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/aix/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/bionic/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/bionic/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/bsd/darwin/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/bsd/darwin/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/bsd/freebsd/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/bsd/freebsd/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/bsd/netbsd/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/bsd/netbsd/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/djgpp/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/djgpp/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/djgpp/error_constants.h
    branches/google/integration/libstdc++-v3/config/os/generic/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/generic/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/generic/error_constants.h
    branches/google/integration/libstdc++-v3/config/os/gnu-linux/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/gnu-linux/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/hpux/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/hpux/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/hpux/os_defines.h
    branches/google/integration/libstdc++-v3/config/os/irix/atomicity.h
    branches/google/integration/libstdc++-v3/config/os/irix/irix6.5/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/irix/irix6.5/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/mingw32/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/mingw32/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/mingw32/error_constants.h
    branches/google/integration/libstdc++-v3/config/os/newlib/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/newlib/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/qnx/qnx6.1/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/qnx/qnx6.1/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/solaris/solaris2.7/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/solaris/solaris2.7/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/tpf/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/tpf/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/uclibc/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/uclibc/ctype_inline.h
    branches/google/integration/libstdc++-v3/config/os/vxworks/ctype_base.h
    branches/google/integration/libstdc++-v3/config/os/vxworks/ctype_inline.h
    branches/google/integration/libstdc++-v3/doc/doxygen/user.cfg.in
    branches/google/integration/libstdc++-v3/include/backward/auto_ptr.h
    branches/google/integration/libstdc++-v3/include/backward/binders.h
    branches/google/integration/libstdc++-v3/include/backward/hash_fun.h
    branches/google/integration/libstdc++-v3/include/backward/hash_map
    branches/google/integration/libstdc++-v3/include/backward/hash_set
    branches/google/integration/libstdc++-v3/include/backward/hashtable.h
    branches/google/integration/libstdc++-v3/include/backward/strstream
    branches/google/integration/libstdc++-v3/include/bits/algorithmfwd.h
    branches/google/integration/libstdc++-v3/include/bits/allocator.h
    branches/google/integration/libstdc++-v3/include/bits/atomic_0.h
    branches/google/integration/libstdc++-v3/include/bits/atomic_2.h
    branches/google/integration/libstdc++-v3/include/bits/atomic_base.h
    branches/google/integration/libstdc++-v3/include/bits/basic_ios.h
    branches/google/integration/libstdc++-v3/include/bits/basic_ios.tcc
    branches/google/integration/libstdc++-v3/include/bits/basic_string.h
    branches/google/integration/libstdc++-v3/include/bits/basic_string.tcc
    branches/google/integration/libstdc++-v3/include/bits/boost_concept_check.h
    branches/google/integration/libstdc++-v3/include/bits/c++config
    branches/google/integration/libstdc++-v3/include/bits/char_traits.h
    branches/google/integration/libstdc++-v3/include/bits/codecvt.h
    branches/google/integration/libstdc++-v3/include/bits/cpp_type_traits.h
    branches/google/integration/libstdc++-v3/include/bits/deque.tcc
    branches/google/integration/libstdc++-v3/include/bits/forward_list.h
    branches/google/integration/libstdc++-v3/include/bits/forward_list.tcc
    branches/google/integration/libstdc++-v3/include/bits/fstream.tcc
    branches/google/integration/libstdc++-v3/include/bits/functexcept.h
    branches/google/integration/libstdc++-v3/include/bits/functional_hash.h
    branches/google/integration/libstdc++-v3/include/bits/gslice.h
    branches/google/integration/libstdc++-v3/include/bits/gslice_array.h
    branches/google/integration/libstdc++-v3/include/bits/hashtable.h
    branches/google/integration/libstdc++-v3/include/bits/hashtable_policy.h
    branches/google/integration/libstdc++-v3/include/bits/indirect_array.h
    branches/google/integration/libstdc++-v3/include/bits/ios_base.h
    branches/google/integration/libstdc++-v3/include/bits/istream.tcc
    branches/google/integration/libstdc++-v3/include/bits/list.tcc
    branches/google/integration/libstdc++-v3/include/bits/locale_classes.h
    branches/google/integration/libstdc++-v3/include/bits/locale_classes.tcc
    branches/google/integration/libstdc++-v3/include/bits/locale_facets.h
    branches/google/integration/libstdc++-v3/include/bits/locale_facets.tcc
    branches/google/integration/libstdc++-v3/include/bits/locale_facets_nonio.h
    branches/google/integration/libstdc++-v3/include/bits/locale_facets_nonio.tcc
    branches/google/integration/libstdc++-v3/include/bits/localefwd.h
    branches/google/integration/libstdc++-v3/include/bits/mask_array.h
    branches/google/integration/libstdc++-v3/include/bits/move.h
    branches/google/integration/libstdc++-v3/include/bits/ostream.tcc
    branches/google/integration/libstdc++-v3/include/bits/ostream_insert.h
    branches/google/integration/libstdc++-v3/include/bits/postypes.h
    branches/google/integration/libstdc++-v3/include/bits/random.h
    branches/google/integration/libstdc++-v3/include/bits/random.tcc
    branches/google/integration/libstdc++-v3/include/bits/range_access.h
    branches/google/integration/libstdc++-v3/include/bits/regex.h
    branches/google/integration/libstdc++-v3/include/bits/regex_compiler.h
    branches/google/integration/libstdc++-v3/include/bits/regex_constants.h
    branches/google/integration/libstdc++-v3/include/bits/regex_cursor.h
    branches/google/integration/libstdc++-v3/include/bits/regex_error.h
    branches/google/integration/libstdc++-v3/include/bits/regex_grep_matcher.h
    branches/google/integration/libstdc++-v3/include/bits/regex_grep_matcher.tcc
    branches/google/integration/libstdc++-v3/include/bits/regex_nfa.h
    branches/google/integration/libstdc++-v3/include/bits/regex_nfa.tcc
    branches/google/integration/libstdc++-v3/include/bits/shared_ptr.h
    branches/google/integration/libstdc++-v3/include/bits/shared_ptr_base.h
    branches/google/integration/libstdc++-v3/include/bits/slice_array.h
    branches/google/integration/libstdc++-v3/include/bits/sstream.tcc
    branches/google/integration/libstdc++-v3/include/bits/stl_algo.h
    branches/google/integration/libstdc++-v3/include/bits/stl_algobase.h
    branches/google/integration/libstdc++-v3/include/bits/stl_bvector.h
    branches/google/integration/libstdc++-v3/include/bits/stl_construct.h
    branches/google/integration/libstdc++-v3/include/bits/stl_deque.h
    branches/google/integration/libstdc++-v3/include/bits/stl_function.h
    branches/google/integration/libstdc++-v3/include/bits/stl_heap.h
    branches/google/integration/libstdc++-v3/include/bits/stl_iterator.h
    branches/google/integration/libstdc++-v3/include/bits/stl_iterator_base_funcs.h
    branches/google/integration/libstdc++-v3/include/bits/stl_iterator_base_types.h
    branches/google/integration/libstdc++-v3/include/bits/stl_list.h
    branches/google/integration/libstdc++-v3/include/bits/stl_map.h
    branches/google/integration/libstdc++-v3/include/bits/stl_multimap.h
    branches/google/integration/libstdc++-v3/include/bits/stl_multiset.h
    branches/google/integration/libstdc++-v3/include/bits/stl_numeric.h
    branches/google/integration/libstdc++-v3/include/bits/stl_pair.h
    branches/google/integration/libstdc++-v3/include/bits/stl_queue.h
    branches/google/integration/libstdc++-v3/include/bits/stl_raw_storage_iter.h
    branches/google/integration/libstdc++-v3/include/bits/stl_relops.h
    branches/google/integration/libstdc++-v3/include/bits/stl_set.h
    branches/google/integration/libstdc++-v3/include/bits/stl_stack.h
    branches/google/integration/libstdc++-v3/include/bits/stl_tempbuf.h
    branches/google/integration/libstdc++-v3/include/bits/stl_tree.h
    branches/google/integration/libstdc++-v3/include/bits/stl_uninitialized.h
    branches/google/integration/libstdc++-v3/include/bits/stl_vector.h
    branches/google/integration/libstdc++-v3/include/bits/stream_iterator.h
    branches/google/integration/libstdc++-v3/include/bits/streambuf.tcc
    branches/google/integration/libstdc++-v3/include/bits/streambuf_iterator.h
    branches/google/integration/libstdc++-v3/include/bits/stringfwd.h
    branches/google/integration/libstdc++-v3/include/bits/unique_ptr.h
    branches/google/integration/libstdc++-v3/include/bits/unordered_map.h
    branches/google/integration/libstdc++-v3/include/bits/unordered_set.h
    branches/google/integration/libstdc++-v3/include/bits/valarray_after.h
    branches/google/integration/libstdc++-v3/include/bits/valarray_array.h
    branches/google/integration/libstdc++-v3/include/bits/valarray_array.tcc
    branches/google/integration/libstdc++-v3/include/bits/valarray_before.h
    branches/google/integration/libstdc++-v3/include/bits/vector.tcc
    branches/google/integration/libstdc++-v3/include/c/cmath
    branches/google/integration/libstdc++-v3/include/c/cwchar
    branches/google/integration/libstdc++-v3/include/c_compatibility/fenv.h
    branches/google/integration/libstdc++-v3/include/c_compatibility/inttypes.h
    branches/google/integration/libstdc++-v3/include/c_compatibility/stdint.h
    branches/google/integration/libstdc++-v3/include/c_global/cctype
    branches/google/integration/libstdc++-v3/include/c_global/cfenv
    branches/google/integration/libstdc++-v3/include/c_global/cinttypes
    branches/google/integration/libstdc++-v3/include/c_global/clocale
    branches/google/integration/libstdc++-v3/include/c_global/cmath
    branches/google/integration/libstdc++-v3/include/c_global/csetjmp
    branches/google/integration/libstdc++-v3/include/c_global/csignal
    branches/google/integration/libstdc++-v3/include/c_global/cstdarg
    branches/google/integration/libstdc++-v3/include/c_global/cstdint
    branches/google/integration/libstdc++-v3/include/c_global/cstdio
    branches/google/integration/libstdc++-v3/include/c_global/cstdlib
    branches/google/integration/libstdc++-v3/include/c_global/cstring
    branches/google/integration/libstdc++-v3/include/c_global/ctime
    branches/google/integration/libstdc++-v3/include/c_global/cwchar
    branches/google/integration/libstdc++-v3/include/c_global/cwctype
    branches/google/integration/libstdc++-v3/include/c_std/cctype
    branches/google/integration/libstdc++-v3/include/c_std/clocale
    branches/google/integration/libstdc++-v3/include/c_std/cmath
    branches/google/integration/libstdc++-v3/include/c_std/csetjmp
    branches/google/integration/libstdc++-v3/include/c_std/csignal
    branches/google/integration/libstdc++-v3/include/c_std/cstdarg
    branches/google/integration/libstdc++-v3/include/c_std/cstdio
    branches/google/integration/libstdc++-v3/include/c_std/cstdlib
    branches/google/integration/libstdc++-v3/include/c_std/cstring
    branches/google/integration/libstdc++-v3/include/c_std/ctime
    branches/google/integration/libstdc++-v3/include/c_std/cwchar
    branches/google/integration/libstdc++-v3/include/c_std/cwctype
    branches/google/integration/libstdc++-v3/include/debug/bitset
    branches/google/integration/libstdc++-v3/include/debug/debug.h
    branches/google/integration/libstdc++-v3/include/debug/deque
    branches/google/integration/libstdc++-v3/include/debug/forward_list
    branches/google/integration/libstdc++-v3/include/debug/list
    branches/google/integration/libstdc++-v3/include/debug/map.h
    branches/google/integration/libstdc++-v3/include/debug/multimap.h
    branches/google/integration/libstdc++-v3/include/debug/multiset.h
    branches/google/integration/libstdc++-v3/include/debug/set.h
    branches/google/integration/libstdc++-v3/include/debug/unordered_map
    branches/google/integration/libstdc++-v3/include/debug/unordered_set
    branches/google/integration/libstdc++-v3/include/debug/vector
    branches/google/integration/libstdc++-v3/include/decimal/decimal
    branches/google/integration/libstdc++-v3/include/decimal/decimal.h
    branches/google/integration/libstdc++-v3/include/ext/algorithm
    branches/google/integration/libstdc++-v3/include/ext/array_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/atomicity.h
    branches/google/integration/libstdc++-v3/include/ext/bitmap_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/cast.h
    branches/google/integration/libstdc++-v3/include/ext/codecvt_specializations.h
    branches/google/integration/libstdc++-v3/include/ext/concurrence.h
    branches/google/integration/libstdc++-v3/include/ext/debug_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/enc_filebuf.h
    branches/google/integration/libstdc++-v3/include/ext/extptr_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/functional
    branches/google/integration/libstdc++-v3/include/ext/iterator
    branches/google/integration/libstdc++-v3/include/ext/malloc_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/memory
    branches/google/integration/libstdc++-v3/include/ext/mt_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/new_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/numeric
    branches/google/integration/libstdc++-v3/include/ext/numeric_traits.h
    branches/google/integration/libstdc++-v3/include/ext/pb_ds/detail/debug_map_base.hpp
    branches/google/integration/libstdc++-v3/include/ext/pod_char_traits.h
    branches/google/integration/libstdc++-v3/include/ext/pointer.h
    branches/google/integration/libstdc++-v3/include/ext/pool_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/rb_tree
    branches/google/integration/libstdc++-v3/include/ext/rc_string_base.h
    branches/google/integration/libstdc++-v3/include/ext/rope
    branches/google/integration/libstdc++-v3/include/ext/ropeimpl.h
    branches/google/integration/libstdc++-v3/include/ext/slist
    branches/google/integration/libstdc++-v3/include/ext/sso_string_base.h
    branches/google/integration/libstdc++-v3/include/ext/stdio_filebuf.h
    branches/google/integration/libstdc++-v3/include/ext/stdio_sync_filebuf.h
    branches/google/integration/libstdc++-v3/include/ext/string_conversions.h
    branches/google/integration/libstdc++-v3/include/ext/throw_allocator.h
    branches/google/integration/libstdc++-v3/include/ext/type_traits.h
    branches/google/integration/libstdc++-v3/include/ext/typelist.h
    branches/google/integration/libstdc++-v3/include/ext/vstring.h
    branches/google/integration/libstdc++-v3/include/ext/vstring.tcc
    branches/google/integration/libstdc++-v3/include/ext/vstring_fwd.h
    branches/google/integration/libstdc++-v3/include/ext/vstring_util.h
    branches/google/integration/libstdc++-v3/include/parallel/algo.h
    branches/google/integration/libstdc++-v3/include/parallel/algobase.h
    branches/google/integration/libstdc++-v3/include/parallel/algorithmfwd.h
    branches/google/integration/libstdc++-v3/include/parallel/base.h
    branches/google/integration/libstdc++-v3/include/parallel/numeric
    branches/google/integration/libstdc++-v3/include/parallel/numericfwd.h
    branches/google/integration/libstdc++-v3/include/profile/base.h
    branches/google/integration/libstdc++-v3/include/profile/bitset
    branches/google/integration/libstdc++-v3/include/profile/deque
    branches/google/integration/libstdc++-v3/include/profile/forward_list
    branches/google/integration/libstdc++-v3/include/profile/impl/profiler_node.h
    branches/google/integration/libstdc++-v3/include/profile/impl/profiler_trace.h
    branches/google/integration/libstdc++-v3/include/profile/iterator_tracker.h
    branches/google/integration/libstdc++-v3/include/profile/list
    branches/google/integration/libstdc++-v3/include/profile/map.h
    branches/google/integration/libstdc++-v3/include/profile/multimap.h
    branches/google/integration/libstdc++-v3/include/profile/multiset.h
    branches/google/integration/libstdc++-v3/include/profile/set.h
    branches/google/integration/libstdc++-v3/include/profile/unordered_map
    branches/google/integration/libstdc++-v3/include/profile/unordered_set
    branches/google/integration/libstdc++-v3/include/profile/vector
    branches/google/integration/libstdc++-v3/include/std/array
    branches/google/integration/libstdc++-v3/include/std/atomic
    branches/google/integration/libstdc++-v3/include/std/bitset
    branches/google/integration/libstdc++-v3/include/std/chrono
    branches/google/integration/libstdc++-v3/include/std/complex
    branches/google/integration/libstdc++-v3/include/std/condition_variable
    branches/google/integration/libstdc++-v3/include/std/fstream
    branches/google/integration/libstdc++-v3/include/std/functional
    branches/google/integration/libstdc++-v3/include/std/future
    branches/google/integration/libstdc++-v3/include/std/iomanip
    branches/google/integration/libstdc++-v3/include/std/iosfwd
    branches/google/integration/libstdc++-v3/include/std/iostream
    branches/google/integration/libstdc++-v3/include/std/istream
    branches/google/integration/libstdc++-v3/include/std/limits
    branches/google/integration/libstdc++-v3/include/std/mutex
    branches/google/integration/libstdc++-v3/include/std/ostream
    branches/google/integration/libstdc++-v3/include/std/ratio
    branches/google/integration/libstdc++-v3/include/std/sstream
    branches/google/integration/libstdc++-v3/include/std/stdexcept
    branches/google/integration/libstdc++-v3/include/std/streambuf
    branches/google/integration/libstdc++-v3/include/std/system_error
    branches/google/integration/libstdc++-v3/include/std/thread
    branches/google/integration/libstdc++-v3/include/std/tuple
    branches/google/integration/libstdc++-v3/include/std/type_traits
    branches/google/integration/libstdc++-v3/include/std/typeindex
    branches/google/integration/libstdc++-v3/include/std/utility
    branches/google/integration/libstdc++-v3/include/std/valarray
    branches/google/integration/libstdc++-v3/include/tr1/array
    branches/google/integration/libstdc++-v3/include/tr1/bessel_function.tcc
    branches/google/integration/libstdc++-v3/include/tr1/beta_function.tcc
    branches/google/integration/libstdc++-v3/include/tr1/cctype
    branches/google/integration/libstdc++-v3/include/tr1/cfenv
    branches/google/integration/libstdc++-v3/include/tr1/cinttypes
    branches/google/integration/libstdc++-v3/include/tr1/cmath
    branches/google/integration/libstdc++-v3/include/tr1/complex
    branches/google/integration/libstdc++-v3/include/tr1/cstdint
    branches/google/integration/libstdc++-v3/include/tr1/cstdio
    branches/google/integration/libstdc++-v3/include/tr1/cstdlib
    branches/google/integration/libstdc++-v3/include/tr1/cwchar
    branches/google/integration/libstdc++-v3/include/tr1/cwctype
    branches/google/integration/libstdc++-v3/include/tr1/ell_integral.tcc
    branches/google/integration/libstdc++-v3/include/tr1/exp_integral.tcc
    branches/google/integration/libstdc++-v3/include/tr1/functional
    branches/google/integration/libstdc++-v3/include/tr1/functional_hash.h
    branches/google/integration/libstdc++-v3/include/tr1/gamma.tcc
    branches/google/integration/libstdc++-v3/include/tr1/hashtable.h
    branches/google/integration/libstdc++-v3/include/tr1/hashtable_policy.h
    branches/google/integration/libstdc++-v3/include/tr1/hypergeometric.tcc
    branches/google/integration/libstdc++-v3/include/tr1/legendre_function.tcc
    branches/google/integration/libstdc++-v3/include/tr1/modified_bessel_func.tcc
    branches/google/integration/libstdc++-v3/include/tr1/poly_hermite.tcc
    branches/google/integration/libstdc++-v3/include/tr1/poly_laguerre.tcc
    branches/google/integration/libstdc++-v3/include/tr1/random.h
    branches/google/integration/libstdc++-v3/include/tr1/random.tcc
    branches/google/integration/libstdc++-v3/include/tr1/regex
    branches/google/integration/libstdc++-v3/include/tr1/riemann_zeta.tcc
    branches/google/integration/libstdc++-v3/include/tr1/shared_ptr.h
    branches/google/integration/libstdc++-v3/include/tr1/special_function_util.h
    branches/google/integration/libstdc++-v3/include/tr1/tuple
    branches/google/integration/libstdc++-v3/include/tr1/type_traits
    branches/google/integration/libstdc++-v3/include/tr1/unordered_map.h
    branches/google/integration/libstdc++-v3/include/tr1/unordered_set.h
    branches/google/integration/libstdc++-v3/include/tr1/utility
    branches/google/integration/libstdc++-v3/libsupc++/del_op.cc
    branches/google/integration/libstdc++-v3/libsupc++/exception
    branches/google/integration/libstdc++-v3/libsupc++/hash_bytes.cc
    branches/google/integration/libstdc++-v3/libsupc++/hash_bytes.h
    branches/google/integration/libstdc++-v3/libsupc++/vterminate.cc
    branches/google/integration/libstdc++-v3/src/Makefile.am
    branches/google/integration/libstdc++-v3/src/Makefile.in
    branches/google/integration/libstdc++-v3/src/allocator-inst.cc
    branches/google/integration/libstdc++-v3/src/atomic.cc
    branches/google/integration/libstdc++-v3/src/bitmap_allocator.cc
    branches/google/integration/libstdc++-v3/src/chrono.cc
    branches/google/integration/libstdc++-v3/src/codecvt.cc
    branches/google/integration/libstdc++-v3/src/compatibility-c++0x.cc
    branches/google/integration/libstdc++-v3/src/compatibility-debug_list.cc
    branches/google/integration/libstdc++-v3/src/compatibility-ldbl.cc
    branches/google/integration/libstdc++-v3/src/compatibility-list.cc
    branches/google/integration/libstdc++-v3/src/compatibility-parallel_list.cc
    branches/google/integration/libstdc++-v3/src/compatibility.cc
    branches/google/integration/libstdc++-v3/src/complex_io.cc
    branches/google/integration/libstdc++-v3/src/concept-inst.cc
    branches/google/integration/libstdc++-v3/src/condition_variable.cc
    branches/google/integration/libstdc++-v3/src/ctype.cc
    branches/google/integration/libstdc++-v3/src/ext-inst.cc
    branches/google/integration/libstdc++-v3/src/fstream-inst.cc
    branches/google/integration/libstdc++-v3/src/functexcept.cc
    branches/google/integration/libstdc++-v3/src/future.cc
    branches/google/integration/libstdc++-v3/src/globals_io.cc
    branches/google/integration/libstdc++-v3/src/hash_c++0x.cc
    branches/google/integration/libstdc++-v3/src/hash_tr1.cc
    branches/google/integration/libstdc++-v3/src/hashtable-aux.cc
    branches/google/integration/libstdc++-v3/src/hashtable_c++0x.cc
    branches/google/integration/libstdc++-v3/src/hashtable_tr1.cc
    branches/google/integration/libstdc++-v3/src/ios-inst.cc
    branches/google/integration/libstdc++-v3/src/ios.cc
    branches/google/integration/libstdc++-v3/src/ios_failure.cc
    branches/google/integration/libstdc++-v3/src/ios_init.cc
    branches/google/integration/libstdc++-v3/src/ios_locale.cc
    branches/google/integration/libstdc++-v3/src/iostream-inst.cc
    branches/google/integration/libstdc++-v3/src/istream-inst.cc
    branches/google/integration/libstdc++-v3/src/istream.cc
    branches/google/integration/libstdc++-v3/src/limits.cc
    branches/google/integration/libstdc++-v3/src/list.cc
    branches/google/integration/libstdc++-v3/src/locale-inst.cc
    branches/google/integration/libstdc++-v3/src/locale.cc
    branches/google/integration/libstdc++-v3/src/locale_facets.cc
    branches/google/integration/libstdc++-v3/src/locale_init.cc
    branches/google/integration/libstdc++-v3/src/localename.cc
    branches/google/integration/libstdc++-v3/src/misc-inst.cc
    branches/google/integration/libstdc++-v3/src/mt_allocator.cc
    branches/google/integration/libstdc++-v3/src/mutex.cc
    branches/google/integration/libstdc++-v3/src/ostream-inst.cc
    branches/google/integration/libstdc++-v3/src/placeholders.cc
    branches/google/integration/libstdc++-v3/src/pool_allocator.cc
    branches/google/integration/libstdc++-v3/src/sstream-inst.cc
    branches/google/integration/libstdc++-v3/src/stdexcept.cc
    branches/google/integration/libstdc++-v3/src/streambuf-inst.cc
    branches/google/integration/libstdc++-v3/src/streambuf.cc
    branches/google/integration/libstdc++-v3/src/string-inst.cc
    branches/google/integration/libstdc++-v3/src/strstream.cc
    branches/google/integration/libstdc++-v3/src/system_error.cc
    branches/google/integration/libstdc++-v3/src/thread.cc
    branches/google/integration/libstdc++-v3/src/tree.cc
    branches/google/integration/libstdc++-v3/src/valarray-inst.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/auto_ptr/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/declval/requirements/1_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg1.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg2.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/duration/requirements/typedefs_neg3.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/forward/c_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/forward/f_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/make_signed/requirements/typedefs_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/ratio/cons/cons_overflow_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/ratio/operations/ops_overflow_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/shared_ptr/cons/43820_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_1_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_2_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/insert_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/forward_list/capacity/1.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/forward_list/requirements/dr438/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/forward_list/requirements/dr438/constructor_1_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/forward_list/requirements/dr438/constructor_2_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/forward_list/requirements/dr438/insert_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/list/capacity/29134.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/list/requirements/dr438/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_1_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_2_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/list/requirements/dr438/insert_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/bool/capacity/29134.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/bool/modifiers/insert/31370.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_1_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_2_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/insert_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/25_algorithms/sort/35588.cc
    branches/google/integration/libstdc++-v3/testsuite/27_io/ios_base/cons/assign_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/27_io/ios_base/cons/copy_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/profile/profiler_algos.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/type_traits/add_unsigned_floating_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/type_traits/add_unsigned_integer_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/type_traits/remove_unsigned_floating_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/ext/type_traits/remove_unsigned_integer_neg.cc
    branches/google/integration/libstdc++-v3/testsuite/tr1/2_general_utilities/shared_ptr/cons/43820_neg.cc


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