From 1c73a21caf2dc83ced30f10076a682ea26e1ba71 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 18 Mar 2026 15:40:51 +0100 Subject: [PATCH] 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 * include/bits/regex_compiler.h (_Compiler::_M_pop): Uglify ret variable name. --- libstdc++-v3/include/bits/regex_compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/include/bits/regex_compiler.h b/libstdc++-v3/include/bits/regex_compiler.h index 167db5e8721..4dfa02fd213 100644 --- a/libstdc++-v3/include/bits/regex_compiler.h +++ b/libstdc++-v3/include/bits/regex_compiler.h @@ -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