Hi Martin,
I'm trying to understand ostream, where is the basic_ostream&
operator<< (short); (ostream, line 143) and basic_ostream& operator<<
(int); (ostream, line 149) function implemented? The closest match is:
Ostream, line 145:
basic_ostream& operator<< (unsigned short __val) {
return *this << _RWSTD_STATIC_CAST (unsigned long, __val);
}
And
Ostream, line 151:
basic_ostream& operator<< (unsigned int __val) {
return *this << _RWSTD_STATIC_CAST (unsigned long, __val);
}
Thank you,
Yu (Scott) Zhong
Consulting Engineer
Rogue Wave Software, a Quovadxtm division
[EMAIL PROTECTED]
ph: 303 545 3182