aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>2023-05-05 14:34:09 +0200
committerArthur Cohen <arthur.cohen@embecosm.com>2024-01-16 18:37:18 +0100
commite7d105546b7fca4b55959d73c5f60dfb84658f15 (patch)
treee412f8647cd02ba3ebf76d1a12290caca424921e
parentd0661bf8c9d432a0c01b2a789569cf64fbffcfaa (diff)
downloadgcc-e7d105546b7fca4b55959d73c5f60dfb84658f15.zip
gcc-e7d105546b7fca4b55959d73c5f60dfb84658f15.tar.gz
gcc-e7d105546b7fca4b55959d73c5f60dfb84658f15.tar.bz2
gccrs: converter: Fix some styling issues
Fix multiple issues regarding style around loops and conditions with one single element. gcc/rust/ChangeLog: * util/rust-token-converter.cc (convert): Fix style. (from_ident): Likewise. Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
-rw-r--r--gcc/rust/util/rust-token-converter.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/rust/util/rust-token-converter.cc b/gcc/rust/util/rust-token-converter.cc
index 53168b6..d5cb450 100644
--- a/gcc/rust/util/rust-token-converter.cc
+++ b/gcc/rust/util/rust-token-converter.cc
@@ -244,10 +244,8 @@ convert (const std::vector<const_TokenPtr> &tokens)
auto str = token->as_string ();
auto it = str.cbegin ();
for (; it != str.cend () - 1; it++)
- {
- trees.back ().push (ProcMacro::TokenTree::make_tokentree (
- ProcMacro::Punct::make_punct (*it, ProcMacro::JOINT)));
- }
+ trees.back ().push (ProcMacro::TokenTree::make_tokentree (
+ ProcMacro::Punct::make_punct (*it, ProcMacro::JOINT)));
trees.back ().push (ProcMacro::TokenTree::make_tokentree (
ProcMacro::Punct::make_punct (*it, ProcMacro::ALONE)));
}
@@ -315,9 +313,7 @@ from_ident (const ProcMacro::Ident &ident, std::vector<const_TokenPtr> &result)
{
std::string value (reinterpret_cast<const char *> (ident.val), ident.len);
if (ident.is_raw)
- {
- value = "r#" + value;
- }
+ value = "r#" + value;
// TODO: Inject span -> for now spans are not stored in Ident, once changed
// the span should be injected in the built token below.