bug fix: ostream << operator overload didn't return the ostream

This commit is contained in:
darkeye 2000-11-17 15:33:54 +00:00
parent 7eabcb9d56
commit 6bb7ca8649
1 changed files with 5 additions and 0 deletions

View File

@ -288,6 +288,8 @@ operator<< ( ostream & os,
{ {
os << e.getFile() << ":" << e.getLine() << ": " os << e.getFile() << ":" << e.getLine() << ": "
<< e.getDescription() << " [" << e.getCode() << "]"; << e.getDescription() << " [" << e.getCode() << "]";
return os;
} }
@ -300,6 +302,9 @@ operator<< ( ostream & os,
$Source$ $Source$
$Log$ $Log$
Revision 1.5 2000/11/17 15:33:54 darkeye
bug fix: ostream << operator overload didn't return the ostream
Revision 1.4 2000/11/11 12:33:13 darkeye Revision 1.4 2000/11/11 12:33:13 darkeye
added kdoc-style documentation added kdoc-style documentation