diff options
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/backward/fstream.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bc69dde..ebba1ec 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ 2001-04-03 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> + * include/backward/fstream.h: Expose streampos to global + namespace. + +2001-04-03 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> + * include/bits/stl_iterator_base_types.h: Fix typo 2001-04-03 Andreas Schwab <schwab@suse.de> diff --git a/libstdc++-v3/include/backward/fstream.h b/libstdc++-v3/include/backward/fstream.h index be6eb43..b4ecd3d 100644 --- a/libstdc++-v3/include/backward/fstream.h +++ b/libstdc++-v3/include/backward/fstream.h @@ -34,12 +34,14 @@ using std::filebuf; using std::ifstream; using std::ofstream; using std::fstream; +using std::streampos #ifdef _GLIBCPP_USE_WCHAR_T using std::wfilebuf; using std::wifstream; using std::wofstream; using std::wfstream; +using std::wstreampos #endif #endif |