mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 07:14:09 +08:00
3983-fstream.cc: Add instantiation for AIX.
2003-04-11 Benjamin Kosnik <bkoz@redhat.com> * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add instantiation for AIX. * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same. * testsuite/25_algorithms/min_max.cc: Same. From-SVN: r65468
This commit is contained in:
parent
a46666a950
commit
d67b7799de
@ -1,3 +1,10 @@
|
||||
2003-04-11 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add
|
||||
instantiation for AIX.
|
||||
* testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
|
||||
* testsuite/25_algorithms/min_max.cc: Same.
|
||||
|
||||
2003-04-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
* basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
|
||||
|
@ -53,6 +53,25 @@ template<typename T>
|
||||
template<typename T>
|
||||
const T A<T>::a = T(3);
|
||||
|
||||
#if !__GXX_WEAK__
|
||||
// Explicitly instantiate for systems with no COMDAT or weak support.
|
||||
template int A<int>::a;
|
||||
template int A<unsigned int>::a;
|
||||
template int A<short>::a;
|
||||
template int A<unsigned short>::a;
|
||||
template int A<long>::a;
|
||||
template int A<unsigned long>::a;
|
||||
template int A<long long>::a;
|
||||
template int A<unsigned long long>::a;
|
||||
template int A<char>::a;
|
||||
template int A<signed char>::a;
|
||||
template int A<unsigned char>::a;
|
||||
template int A<wchar_t>::a;
|
||||
template int A<float>::a;
|
||||
template int A<double>::a;
|
||||
template int A<long double>::a;
|
||||
#endif
|
||||
|
||||
void test02()
|
||||
{
|
||||
bool test = true;
|
||||
|
@ -180,6 +180,10 @@ template
|
||||
template
|
||||
unsigned char
|
||||
std::basic_string<unsigned char>::_Rep::_S_terminal;
|
||||
|
||||
template
|
||||
std::basic_streambuf<gnu_char_type>::int_type
|
||||
std::basic_streambuf<gnu_char_type>::_S_pback_size;
|
||||
#endif
|
||||
|
||||
int main()
|
||||
|
@ -151,6 +151,10 @@ template
|
||||
template
|
||||
unsigned char
|
||||
std::basic_string<unsigned char>::_Rep::_S_terminal;
|
||||
|
||||
template
|
||||
std::basic_streambuf<gnu_char_type>::int_type
|
||||
std::basic_streambuf<gnu_char_type>::_S_pback_size;
|
||||
#endif
|
||||
|
||||
int main()
|
||||
|
Loading…
Reference in New Issue
Block a user