Qualified two calls to memcpy to work around a C++Builder bug; Refs #4811

[SVN r76213]
This commit is contained in:
Marshall Clow
2011-12-28 19:14:18 +00:00
parent e92d471817
commit ba417e875a

View File

@ -126,7 +126,7 @@ namespace boost {
} }
// Use fixed storage // Use fixed storage
::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size); ::std::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
} }
// Destructor // Destructor
@ -206,7 +206,7 @@ namespace boost {
} }
// Copy the data // Copy the data
::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size); ::std::memcpy(DestStorage, SrcStorage, sizeof(set_value_type)*m_Size);
return *this; return *this;
} }