mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
rsx: Apply Clang-Tidy fix "readability-redundant-string-init"
This commit is contained in:
parent
331fe01762
commit
8f2647555a
7 changed files with 13 additions and 13 deletions
|
|
@ -170,7 +170,7 @@ void GLVertexDecompilerThread::insertMainStart(std::stringstream & OS)
|
|||
insert_glsl_legacy_function(OS, properties2);
|
||||
glsl::insert_vertex_input_fetch(OS, glsl::glsl_rules_opengl4, dev_caps.vendor_INTEL == false);
|
||||
|
||||
std::string parameters = "";
|
||||
std::string parameters;
|
||||
for (int i = 0; i < 16; ++i)
|
||||
{
|
||||
std::string reg_name = "dst_reg" + std::to_string(i);
|
||||
|
|
@ -218,7 +218,7 @@ void GLVertexDecompilerThread::insertMainEnd(std::stringstream & OS)
|
|||
OS << "void main ()\n";
|
||||
OS << "{\n";
|
||||
|
||||
std::string parameters = "";
|
||||
std::string parameters;
|
||||
|
||||
if (ParamType *vec4Types = m_parr.SearchParam(PF_PARAM_OUT, "vec4"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue