From: Marc Poulhiès <[email protected]>
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]>
---
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 4d94a202a1f..a99b5ed1a34 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
--
2.50.1