Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76265 - branches/release/boost/algorithm/string/detail
From: marshall_at_[hidden]
Date: 2012-01-01 16:13:00


Author: marshall
Date: 2012-01-01 16:12:58 EST (Sun, 01 Jan 2012)
New Revision: 76265
URL: http://svn.boost.org/trac/boost/changeset/76265

Log:
Merge Change 76213 to release; Fixes #4811
Properties modified:
   branches/release/boost/algorithm/string/detail/classification.hpp (contents, props changed)
Text files modified:
   branches/release/boost/algorithm/string/detail/classification.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: branches/release/boost/algorithm/string/detail/classification.hpp
==============================================================================
--- branches/release/boost/algorithm/string/detail/classification.hpp (original)
+++ branches/release/boost/algorithm/string/detail/classification.hpp 2012-01-01 16:12:58 EST (Sun, 01 Jan 2012)
@@ -126,7 +126,7 @@
                     }
 
                     // Use fixed storage
- ::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
+ ::std::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
                 }
 
                 // Destructor
@@ -206,7 +206,7 @@
                     }
 
                     // Copy the data
- ::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
+ ::std::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
 
                     return *this;
                 }


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