update boost

This commit is contained in:
2023-11-24 12:56:13 -06:00
parent cfc99971af
commit 19d727037a
9260 changed files with 849256 additions and 299957 deletions

View File

@@ -40,7 +40,7 @@ public:
void const * address() const
{
return &buffer_.front();
return detail::c_data(buffer_);
}
const std::size_t& size() const
@@ -89,7 +89,7 @@ public:
{
unsigned int l = static_cast<unsigned int>(s.size());
save(l);
save_impl(s.data(),s.size());
save_impl(s.data(),s.size()*sizeof(CharType));
}
private: