Changes and fixes for Boost 1.37

[SVN r49323]
This commit is contained in:
Ion Gaztañaga
2008-10-13 19:39:47 +00:00
parent e1cd391001
commit a4b0d3066c
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);