mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 06:49:09 +02:00
libstdc++: Uglify another variable name
This is needed to make the latest version of the uglification plugin I'm about to send PASS. 2026-03-18 Jakub Jelinek <jakub@redhat.com> * include/bits/regex_compiler.h (_Compiler::_M_pop): Uglify ret variable name.
This commit is contained in:
committed by
Jakub Jelinek
parent
b2d37021ac
commit
1c73a21caf
@@ -172,9 +172,9 @@ namespace __detail
|
||||
_StateSeqT
|
||||
_M_pop()
|
||||
{
|
||||
auto ret = _M_stack.top();
|
||||
auto __ret = _M_stack.top();
|
||||
_M_stack.pop();
|
||||
return ret;
|
||||
return __ret;
|
||||
}
|
||||
|
||||
static _FlagT
|
||||
|
||||
Reference in New Issue
Block a user