[PATFCH] libstdc++: Uglify another variable name

Jakub Jelinek jakub@redhat.com
Wed Mar 18 14:30:14 GMT 2026


Hi!

This is needed to make the latest version of the uglification plugin
I'm about to send PASS.

Tested on x86_64-linux, ok for trunk?

2026-03-18  Jakub Jelinek  <jakub@redhat.com>

	* include/bits/regex_compiler.h (_Compiler::_M_pop): Uglify ret
	variable name.

--- libstdc++-v3/include/bits/regex_compiler.h.jj	2026-03-03 15:43:33.136814455 +0100
+++ libstdc++-v3/include/bits/regex_compiler.h	2026-03-18 15:22:12.833396731 +0100
@@ -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

	Jakub



More information about the Libstdc++ mailing list