fixed scientific(ios& i) - thanks to John [Beta] Drinkwater

git-svn-id: file:///srv/svn/repos/haiku/trunk/buildtools@10545 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2004-12-29 23:38:46 +00:00
parent 5f2a11b032
commit 67a3c23c86

View File

@ -287,7 +287,7 @@ inline ios& oct(ios& i)
inline ios& fixed(ios& i)
{ i.setf(ios::fixed, ios::floatfield); return i; }
inline ios& scientific(ios& i)
{ i.setf(ios::fixed, ios::floatfield); return i; }
{ i.setf(ios::scientific, ios::floatfield); return i; }
} // extern "C++"
#endif /*!_IOSTREAM_H*/