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

Вебинар: Каждая идиома когда-то была проблемой - 11.09

>
>
>
Примеры ошибок, обнаруженных с...

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

V1082. Function marked as 'noreturn' may return control. This will result in undefined behavior.


ShadPS4: diegolix29 fork

V1082 Function marked as 'noreturn' may return control. This will result in undefined behavior. ir_emitter.cpp 15


[[noreturn]] void ThrowInvalidType(Type type,
             std::source_location loc = std::source_location::current()) {
  const std::string functionName = loc.function_name();
  const int lineNumber = loc.line();
  // UNREACHABLE_MSG("Invalid type = {}, functionName = {}, line = {}",
  //                  u32(type), functionName,
  //                  lineNumber);
}