Skip to content
Snippets Groups Projects
Commit cf7b4d26 authored by Christopher Rob Jones's avatar Christopher Rob Jones Committed by Christopher Rob Jones
Browse files

RichUtils/AllocateCount: Increase limit for warning to 25

parent 140788e7
No related branches found
No related tags found
2 merge requests!4575Synchronize master branch with 2024-patches,!4465RichUtils/AllocateCount.h: remove constraint that templated TYPE must have MyName()
Pipeline #7432793 passed
......@@ -104,7 +104,7 @@ namespace Rich {
return instances;
}
void check() {
const std::size_t max_expected_size = 10;
const std::size_t max_expected_size = 25;
if ( instances().size() > max_expected_size ) {
warning() << "Unusually high number of active " << MyName() << " condition slices (" << instances().size()
<< ">" << max_expected_size << ")" << endmsg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment