Increased an assertion's length limit

This commit is contained in:
John Wiegley 2011-05-30 17:41:35 -05:00
parent a98db79065
commit 11a9063958

View file

@ -90,7 +90,7 @@ string source_context(const path& file,
return _("<no source context>");
assert(len > 0);
assert(len < 2048);
assert(len < 8192);
std::ostringstream out;