fstream.tcc (open): Change to single return.

2003-04-29  Paolo Carlini  <pcarlini@unitus.it>

	* include/bits/fstream.tcc (open): Change to single return.

From-SVN: r66245
This commit is contained in:
Paolo Carlini 2003-04-29 21:46:07 +02:00 committed by Paolo Carlini
parent 9193479f34
commit cc9d1c78ef
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2003-04-29 Paolo Carlini <pcarlini@unitus.it>
* include/bits/fstream.tcc (open): Change to single return.
2003-04-29 Paolo Carlini <pcarlini@unitus.it> 2003-04-29 Paolo Carlini <pcarlini@unitus.it>
* include/std/std_sstream.h (underflow): Change to single return. * include/std/std_sstream.h (underflow): Change to single return.

View File

@ -100,13 +100,10 @@ namespace std
if ((__mode & ios_base::ate) if ((__mode & ios_base::ate)
&& this->seekoff(0, ios_base::end, __mode) < 0) && this->seekoff(0, ios_base::end, __mode) < 0)
{ // 27.8.1.3,4
// 27.8.1.3,4 this->close();
this->close(); else
return __ret; __ret = this;
}
__ret = this;
} }
} }
return __ret; return __ret;