id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 11414,minor problem in libs/pool/example/sys_allocator.hpp,Ed Vogel ,Chris Newbold,"In sys_allocator.hpp the struct new_delete_allocator has a minor issue. The code is: static pointer allocate(const size_type n, const void* = 0) { return (pointer) new char[n * sizeof(T)]; } static void deallocate(const pointer p, const size_type) { delete [] p; } Note that the deallocate member function calls array delete, but the allocate function does not call array new. According to the standard this is invalid. The HP NonStop runtime will generate an assert failure on the call to the delete. ",Bugs,new,To Be Determined,pool,Boost 1.57.0,Problem,,,