Kaydet (Commit) 5ef30c20 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryparen

Change-Id: I37833e0e19162790f4ae37d74eb63cb84434cf2e
üst 1a7b48c1
......@@ -622,7 +622,7 @@ interface_dcl :
* Push it on the scope stack
*/
idlc()->scopes()->push(pInterface);
delete($1);
delete $1;
}
'{'
{
......@@ -2140,7 +2140,7 @@ at_least_one_scoped_name :
pScopedNames->push_back(*$1);
$$ = pScopedNames;
}
delete($1);
delete $1;
}
;
......@@ -2163,7 +2163,7 @@ scoped_names :
pNames->push_back(*$4);
$$ = pNames;
}
delete($4);
delete $4;
}
| /* EMPTY */
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment