Update contrib.
3 * Silicon Graphics Computer Systems, Inc.
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
11 * Permission to use or copy this software for any purpose is hereby granted
12 * without fee, provided the above notices are retained on all copies.
13 * Permission to modify the code and to distribute modified code is granted,
14 * provided the above notices are retained, and a notice that the code was
15 * modified is included with the above copyright notice.
19 # include "stlport_prefix.h"
20 // #include <iterator>
21 #include "complex_impl.h"
26 # if ! (defined (_STLP_MSVC) && _STLP_MSVC < 1200)
28 // Specializations for narrow characters; lets us avoid the nuisance of
31 basic_ostream<char, char_traits<char> >& _STLP_CALL
32 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
34 return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')';
38 basic_ostream<char, char_traits<char> >& _STLP_CALL
39 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
41 return __os << '(' << __z.real() << ',' << __z.imag() << ')';
44 #ifndef _STLP_NO_LONG_DOUBLE
46 basic_ostream<char, char_traits<char> >& _STLP_CALL
47 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
49 return __os << '(' << __z.real() << ',' << __z.imag() << ')';
53 // Specialization for narrow characters; lets us avoid widen.
55 basic_istream<char, char_traits<char> >& _STLP_CALL
56 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z)
69 __is.setstate(ios_base::failbit);
77 __z = complex<float>(__re, __im);
82 basic_istream<char, char_traits<char> >& _STLP_CALL
83 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z)
96 __is.setstate(ios_base::failbit);
104 __z = complex<double>(__re, __im);
108 # ifndef _STLP_NO_LONG_DOUBLE
110 basic_istream<char, char_traits<char> >& _STLP_CALL
111 operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) {
112 long double __re = 0;
113 long double __im = 0;
123 __is.setstate(ios_base::failbit);
131 __z = complex<long double>(__re, __im);