Skip to content

Commit 1431c19

Browse files
committed
wip
1 parent 50a17e1 commit 1431c19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gcc/rust/lex/rust-lex.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2583,7 +2583,7 @@ rust_input_source_test ()
25832583
test_buffer_input_source (src, expected);
25842584

25852585
// Russian
2586-
src = u8"приве́т";;
2586+
src = u8"приве́т";
25872587
expected = {L'п',
25882588
L'р',
25892589
L'и',

gcc/rust/lex/rust-lex.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ class Lexer
329329
Codepoint next ()
330330
{
331331
if (pos >= chars.size ())
332-
return Codepoint::eof ();
332+
return Codepoint::eof ();
333333
else
334334
{
335335
Codepoint c = chars[pos];

0 commit comments

Comments
 (0)