Changes and fixes for Boost 1.37

[SVN r49277]
This commit is contained in:
Ion Gaztañaga
2008-10-11 13:18:02 +00:00
parent 02d366387b
commit dc0eb8fe0e
41 changed files with 1536 additions and 206 deletions

View File

@@ -198,7 +198,7 @@ int main ()
std::size_t heap_list_size = heaplist->size();
//Copy heap buffer to another
const char *insert_beg = detail::char_ptr_cast(heap_buffer.get_address());
const char *insert_beg = static_cast<char*>(heap_buffer.get_address());
const char *insert_end = insert_beg + heap_buffer.get_size();
std::vector<char> grow_copy (insert_beg, insert_end);