|
Boost-Commit : |
From: technews_at_[hidden]
Date: 2008-01-08 16:18:42
Author: turkanis
Date: 2008-01-08 16:18:42 EST (Tue, 08 Jan 2008)
New Revision: 42622
URL: http://svn.boost.org/trac/boost/changeset/42622
Log:
fix for Visual Age, to select the recent Dinkumware implementation instead of the old Dinkumware implementation
Text files modified:
branches/iostreams_dev/boost/iostreams/positioning.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/iostreams_dev/boost/iostreams/positioning.hpp
==============================================================================
--- branches/iostreams_dev/boost/iostreams/positioning.hpp (original)
+++ branches/iostreams_dev/boost/iostreams/positioning.hpp 2008-01-08 16:18:42 EST (Tue, 08 Jan 2008)
@@ -78,7 +78,7 @@
// Helper function
inline std::fpos_t streampos_to_fpos_t(std::streampos pos)
{
-# ifdef _CPPLIB_VER
+# if defined (_CPPLIB_VER) || defined(__IBMCPP__)
return pos.seekpos();
# else
return pos.get_fpos_t();
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk