Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

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.