Skip to content

Commit

Permalink
Placate clang-format re 'gcc/rust/lex/rust-lex.cc'
Browse files Browse the repository at this point in the history
Reformat the upstream GCC commit 61644ae
"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.
  • Loading branch information
tschwinge committed Mar 24, 2024
1 parent 8f9b475 commit 1cb7e90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gcc/rust/lex/rust-lex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1cb7e90

Please sign in to comment.