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:
Jakub Jelinek
2026-03-18 15:40:51 +01:00
committed by Jakub Jelinek
parent b2d37021ac
commit 1c73a21caf

View File

@@ -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