We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a17e1 commit 1431c19Copy full SHA for 1431c19
gcc/rust/lex/rust-lex.cc
@@ -2583,7 +2583,7 @@ rust_input_source_test ()
2583
test_buffer_input_source (src, expected);
2584
2585
// Russian
2586
- src = u8"приве́т";;
+ src = u8"приве́т";
2587
expected = {L'п',
2588
L'р',
2589
L'и',
gcc/rust/lex/rust-lex.h
@@ -329,7 +329,7 @@ class Lexer
329
Codepoint next ()
330
{
331
if (pos >= chars.size ())
332
- return Codepoint::eof ();
+ return Codepoint::eof ();
333
else
334
335
Codepoint c = chars[pos];
0 commit comments