dtinfo subdirectory dtinfogen

This commit is contained in:
Ulrich Wilkens
2013-08-28 20:07:21 +02:00
committed by Jon Trulson
parent aef2830df2
commit eb698f32cf
43 changed files with 1074 additions and 895 deletions

View File

@@ -45,7 +45,7 @@ FlexBuffer::FlexBuffer()
void
FlexBuffer::grow(size_t needed)
{
if(needed + 1 > maxSize){
if(needed + 1 > (size_t) maxSize){
char *born = new char[maxSize = needed * 3 / 2 + 10];
if(pos){