Boost logo

Boost-Commit :

From: technews_at_[hidden]
Date: 2008-01-04 19:57:07


Author: turkanis
Date: 2008-01-04 19:57:07 EST (Fri, 04 Jan 2008)
New Revision: 42463
URL: http://svn.boost.org/trac/boost/changeset/42463

Log:
added an extra 'std::' for Intel 10.0 on Darwin
Text files modified:
   branches/iostreams_dev/libs/iostreams/example/container_device.hpp | 3 ++-
   1 files changed, 2 insertions(+), 1 deletions(-)

Modified: branches/iostreams_dev/libs/iostreams/example/container_device.hpp
==============================================================================
--- branches/iostreams_dev/libs/iostreams/example/container_device.hpp (original)
+++ branches/iostreams_dev/libs/iostreams/example/container_device.hpp 2008-01-04 19:57:07 EST (Fri, 04 Jan 2008)
@@ -30,7 +30,8 @@
     std::streamsize read(char_type* s, std::streamsize n)
     {
         using namespace std;
- std::streamsize amt = static_cast<streamsize>(container_.size() - pos_);
+ std::streamsize amt =
+ static_cast<std::streamsize>(container_.size() - pos_);
         std::streamsize result = (min)(n, amt);
         if (result != 0) {
             std::copy( container_.begin() + pos_,


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