aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYizhePKU <yizhe@pku.edu.cn>2021-04-09 02:54:10 +0000
committerYizhePKU <yizhe@pku.edu.cn>2021-04-09 02:54:10 +0000
commitf2941c7d59f8282d2bc3a346277338fa96027e43 (patch)
tree610cb29b7ddb5e5f0d6d73905acd82c2d410d928
parent5c14e5f9c7262336bf11dfede6277dd727b83010 (diff)
downloadgcc-f2941c7d59f8282d2bc3a346277338fa96027e43.zip
gcc-f2941c7d59f8282d2bc3a346277338fa96027e43.tar.gz
gcc-f2941c7d59f8282d2bc3a346277338fa96027e43.tar.bz2
Fix formatting
-rw-r--r--gcc/rust/parse/rust-parse-impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/parse/rust-parse-impl.h b/gcc/rust/parse/rust-parse-impl.h
index c14863a..9697169 100644
--- a/gcc/rust/parse/rust-parse-impl.h
+++ b/gcc/rust/parse/rust-parse-impl.h
@@ -4896,7 +4896,7 @@ Parser<ManagedTokenSource>::parse_trait_type (
const_TokenPtr ident_tok = expect_token (IDENTIFIER);
Identifier ident = ident_tok->get_str ();
- std::vector<std::unique_ptr<AST::TypeParamBound> > bounds;
+ std::vector<std::unique_ptr<AST::TypeParamBound>> bounds;
// parse optional colon
if (lexer.peek_token ()->get_id () == COLON)