https://gcc.gnu.org/g:5545a23f6dcb8fce851a5c38cf9e1d43bfaa8b05
commit r16-5862-g5545a23f6dcb8fce851a5c38cf9e1d43bfaa8b05 Author: Marc Poulhiès <[email protected]> Date: Tue Dec 2 19:02:21 2025 +0100 gccrs: reindent rust-lex.cc Reindent according to latest clang-format settings. No functional change. gcc/rust/ChangeLog: * lex/rust-lex.cc (rust_input_source_test): Reindent. Signed-off-by: Marc Poulhiès <[email protected]> Diff: --- gcc/rust/lex/rust-lex.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/rust/lex/rust-lex.cc b/gcc/rust/lex/rust-lex.cc index 4d94a202a1f4..a99b5ed1a348 100644 --- a/gcc/rust/lex/rust-lex.cc +++ b/gcc/rust/lex/rust-lex.cc @@ -2640,8 +2640,8 @@ rust_input_source_test () { // ASCII std::string src = (const char *) u8"_abcde\tXYZ\v\f"; - std::vector<uint32_t> expected - = {u'_', u'a', u'b', u'c', u'd', u'e', u'\t', u'X', u'Y', u'Z', u'\v', u'\f'}; + std::vector<uint32_t> expected = {u'_', u'a', u'b', u'c', u'd', u'e', + u'\t', u'X', u'Y', u'Z', u'\v', u'\f'}; test_buffer_input_source (src, expected); // BOM
