Commit d67b7799 by Benjamin Kosnik Committed by Benjamin Kosnik

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
parent a46666a9
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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment