This website uses cookies and other technology to provide you a more personalized
experience. By
continuing the view of our web-pages you accept the terms of using these files. If you
don't
want your personal data to be processed, please, leave this site.
Learn More →
Examples of errors detected by the V565 diagnostic
V565. Empty exception handler. Silent suppression of exceptions can hide errors in source code during testing.
G3D Content Pak
V565 An empty exception handler. Silent suppression of exceptions can hide the presence of bugs in source code during testing. test ttextinput.cpp 495
void testTextInput() {
....
try {
t.readNumber();
alwaysAssertM(false, "Incorrect parse");
} catch (....) {
}
....
}
alwaysAssertM is written in a wrong place. The string with alwaysAssertM should be inside catch.