Мы используем куки, чтобы пользоваться сайтом было удобно.
Хорошо
to the top
>
>
>
Примеры ошибок, обнаруженных с...

Примеры ошибок, обнаруженных с помощью диагностики V565

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.