rsx: Apply Clang-Tidy fix "readability-redundant-string-init"

This commit is contained in:
scribam 2019-06-08 08:04:56 +02:00 committed by kd-11
parent 331fe01762
commit 8f2647555a
7 changed files with 13 additions and 13 deletions

View file

@ -229,7 +229,7 @@ void GLFragmentDecompilerThread::insertMainStart(std::stringstream & OS)
"h0", "h2", "h4", "h6", "h8"
};
std::string parameters = "";
std::string parameters;
const auto half4 = getHalfTypeName(4);
for (auto &reg_name : output_values)
{
@ -332,7 +332,7 @@ void GLFragmentDecompilerThread::insertMainEnd(std::stringstream & OS)
OS << "void main()\n";
OS << "{\n";
std::string parameters = "";
std::string parameters;
const auto half4 = getHalfTypeName(4);
for (auto &reg_name : output_values)