Made an assert more relaxed in item_context()
This commit is contained in:
parent
95ef2e3b65
commit
9097bc8cd3
1 changed files with 1 additions and 1 deletions
|
|
@ -543,7 +543,7 @@ string item_context(const item_t& item, const string& desc)
|
|||
if (! (len > 0))
|
||||
return empty_string;
|
||||
|
||||
assert(len < 8192);
|
||||
assert(len < 1024 * 1024);
|
||||
|
||||
std::ostringstream out;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue