diff --git a/dune/common/poolallocator.hh b/dune/common/poolallocator.hh index e58416f0aa2b0e27003fb7361d65ca553ca3a118..10883cef114654f598374208fcd1dc2d28b4b7b0 100644 --- a/dune/common/poolallocator.hh +++ b/dune/common/poolallocator.hh @@ -463,8 +463,6 @@ namespace Dune static_assert((chunkSize - (alignment - 1)) % alignment == 0, "Library Error: compiler cannot calculate!"); static_assert(elements>=1, "Library Error: we need to hold at least one element!"); static_assert(elements*alignedSize<=chunkSize, "Library Error: aligned elements must fit into chuck!"); - /* std::cout<<"s= "<<S<<" : T: "<<sizeof(T)<<" Reference: "<<sizeof(Reference)<<" union: "<<unionSize<<" alignment: "<<alignment<< - "aligned: "<<alignedSize<<" chunk: "<< chunkSize<<" elements: "<<elements<<std::endl;*/ } template<class T, std::size_t S> @@ -529,7 +527,6 @@ namespace Dune #ifndef NDEBUG Chunk* current=chunks_; while(current) { - std::cout<<"b: "<<b<<" start: "<<¤t->chunk_<<" end:"<<(¤t->chunk_)+chunkSize<<std::endl; if(static_cast<void*>(¤t->chunk_)<=b && static_cast<void*>((¤t->chunk_)+chunkSize)>b) break;