rsx: Apply Clang-Tidy fix "readability-container-size-empty"

This commit is contained in:
scribam 2019-06-07 21:56:30 +02:00 committed by kd-11
parent c4667133c4
commit 81a3b49c2f
6 changed files with 11 additions and 11 deletions

View file

@ -430,7 +430,7 @@ std::string VertexProgramDecompiler::Decompile()
m_instructions[i].reset();
}
if (m_prog.jump_table.size())
if (!m_prog.jump_table.empty())
{
last_label_addr = *m_prog.jump_table.rbegin();
}