Stubbed out an assert.

This commit is contained in:
John Wiegley 2007-04-23 04:42:16 +00:00
parent 8c6158be40
commit ece13a8cf1

View file

@ -79,7 +79,7 @@ string abbreviate(const string& str, unsigned int width,
if (len <= width)
return str;
assert(width < 4095);
//assert(width < 4095);
char buf[4096];