? temp.diff.txt Index: ext/mt_allocator/deallocate_global-2.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global-2.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_global-2.cc --- ext/mt_allocator/deallocate_global-2.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_global-2.cc 23 Oct 2004 15:32:39 -0000 @@ -66,14 +66,14 @@ void operator delete(void* p) throw() free(p); } -typedef std::string value_t; -typedef __gnu_cxx::__common_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::char_traits traits_t; -typedef std::list list_t; +typedef std::string value_type; +typedef __gnu_cxx::__common_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::char_traits traits_type; +typedef std::list list_type; // Second. -list_t l; +list_type l; int main() { Index: ext/mt_allocator/deallocate_global-4.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global-4.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_global-4.cc --- ext/mt_allocator/deallocate_global-4.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_global-4.cc 23 Oct 2004 15:32:39 -0000 @@ -67,13 +67,13 @@ void operator delete(void* p) throw() } typedef std::string value_t; -typedef __gnu_cxx::__per_type_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::char_traits traits_t; -typedef std::list list_t; +typedef __gnu_cxx::__per_type_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::char_traits traits_type; +typedef std::list list_type; // Second. -list_t l; +list_type l; int main() { Index: ext/mt_allocator/deallocate_global_thread-1.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global_thread-1.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_global_thread-1.cc --- ext/mt_allocator/deallocate_global_thread-1.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_global_thread-1.cc 23 Oct 2004 15:32:39 -0000 @@ -66,14 +66,14 @@ void operator delete(void* p) throw() free(p); } -typedef std::string value_t; -typedef __gnu_cxx::__common_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::char_traits traits_t; -typedef std::list list_t; +typedef std::string value_type; +typedef __gnu_cxx::__common_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::char_traits traits_type; +typedef std::list list_type; // Second. -list_t l; +list_type l; int main() { Index: ext/mt_allocator/deallocate_global_thread-3.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_global_thread-3.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_global_thread-3.cc --- ext/mt_allocator/deallocate_global_thread-3.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_global_thread-3.cc 23 Oct 2004 15:32:39 -0000 @@ -66,14 +66,14 @@ void operator delete(void* p) throw() free(p); } -typedef std::string value_t; -typedef __gnu_cxx::__per_type_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::char_traits traits_t; -typedef std::list list_t; +typedef std::string value_type; +typedef __gnu_cxx::__per_type_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::char_traits traits_type; +typedef std::list list_type; // Second. -list_t l; +list_type l; int main() { Index: ext/mt_allocator/deallocate_local-2.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-2.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_local-2.cc --- ext/mt_allocator/deallocate_local-2.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_local-2.cc 23 Oct 2004 15:32:39 -0000 @@ -64,17 +64,17 @@ void operator delete(void* p) throw() free(p); } -typedef char value_t; -typedef std::char_traits traits_t; -typedef __gnu_cxx::__common_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::basic_string string_t; +typedef char value_type; +typedef std::char_traits traits_type; +typedef __gnu_cxx::__common_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::basic_string string_type; int main() { bool test __attribute__((unused)) = true; { - string_t s; + string_type s; s += "bayou bend"; } return 0; Index: ext/mt_allocator/deallocate_local-4.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local-4.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_local-4.cc --- ext/mt_allocator/deallocate_local-4.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_local-4.cc 23 Oct 2004 15:32:39 -0000 @@ -64,17 +64,17 @@ void operator delete(void* p) throw() free(p); } -typedef char value_t; -typedef std::char_traits traits_t; -typedef __gnu_cxx::__per_type_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::basic_string string_t; +typedef char value_type; +typedef std::char_traits traits_type; +typedef __gnu_cxx::__per_type_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::basic_string string_type; int main() { bool test __attribute__((unused)) = true; { - string_t s; + string_type s; s += "bayou bend"; } return 0; Index: ext/mt_allocator/deallocate_local_thread-1.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-1.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_local_thread-1.cc --- ext/mt_allocator/deallocate_local_thread-1.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_local_thread-1.cc 23 Oct 2004 15:32:39 -0000 @@ -64,17 +64,17 @@ void operator delete(void* p) throw() free(p); } -typedef char value_t; -typedef std::char_traits traits_t; -typedef __gnu_cxx::__common_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::basic_string string_t; +typedef char value_type; +typedef std::char_traits traits_type; +typedef __gnu_cxx::__common_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::basic_string string_type; int main() { bool test __attribute__((unused)) = true; { - string_t s; + string_type s; s += "bayou bend"; } return 0; Index: ext/mt_allocator/deallocate_local_thread-3.cc =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-3.cc,v retrieving revision 1.3 diff -u -p -r1.3 deallocate_local_thread-3.cc --- ext/mt_allocator/deallocate_local_thread-3.cc 12 Oct 2004 01:10:39 -0000 1.3 +++ ext/mt_allocator/deallocate_local_thread-3.cc 23 Oct 2004 15:32:39 -0000 @@ -64,17 +64,17 @@ void operator delete(void* p) throw() free(p); } -typedef char value_t; -typedef std::char_traits traits_t; -typedef __gnu_cxx::__per_type_pool_policy policy_t; -typedef __gnu_cxx::__mt_alloc allocator_t; -typedef std::basic_string string_t; +typedef char value_type; +typedef std::char_traits traits_type; +typedef __gnu_cxx::__per_type_pool_policy policy_type; +typedef __gnu_cxx::__mt_alloc allocator_type; +typedef std::basic_string string_type; int main() { bool test __attribute__((unused)) = true; { - string_t s; + string_type s; s += "bayou bend"; } return 0;