Add missing break to a switch to silence fall-through warning

Closes #2891
This commit is contained in:
Martin Hořeňovský 2024-07-31 17:33:53 +02:00
parent a40dd478f3
commit 33e24b14fc
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 0 deletions

View File

@ -91,6 +91,7 @@ namespace Catch {
m_messages.back().message += " := ";
start = pos;
}
break;
default:; // noop
}
}