From 1cb7e9000ea94a9d1f6bc8e3f9c90ecef84fc6e5 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sun, 24 Mar 2024 23:08:12 +0100 Subject: [PATCH] Placate clang-format re 'gcc/rust/lex/rust-lex.cc' Reformat the upstream GCC commit 61644aea34c4623d16273ff705f8b8b1ff2d87f0 "gccrs: tokenize Unicode identifiers" change to 'gcc/rust/lex/rust-lex.cc' to clang-format's liking. gcc/rust/ * lex/rust-lex.cc (is_identifier_start): Placate clang-format. --- gcc/rust/lex/rust-lex.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/rust/lex/rust-lex.cc b/gcc/rust/lex/rust-lex.cc index bf6bf4c84466..9c2203160cd4 100644 --- a/gcc/rust/lex/rust-lex.cc +++ b/gcc/rust/lex/rust-lex.cc @@ -128,7 +128,8 @@ is_non_decimal_int_literal_separator (uint32_t character) bool is_identifier_start (uint32_t codepoint) { - return (cpp_check_xid_property (codepoint) & CPP_XID_START) || codepoint == '_'; + return (cpp_check_xid_property (codepoint) & CPP_XID_START) + || codepoint == '_'; } bool