diff options
author | Philip Herron <herron.philip@googlemail.com> | 2025-07-31 17:26:14 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-08-05 16:37:01 +0200 |
commit | 1e7a193af1f6d22e652bc3d54b2d78bdb96fbce0 (patch) | |
tree | 1dfd04fdf60fb2b7d338f0f7be6f8888b47e9f49 /gcc | |
parent | 91126cb80e3dd8bad846461088c948c2b797dccc (diff) | |
download | gcc-1e7a193af1f6d22e652bc3d54b2d78bdb96fbce0.zip gcc-1e7a193af1f6d22e652bc3d54b2d78bdb96fbce0.tar.gz gcc-1e7a193af1f6d22e652bc3d54b2d78bdb96fbce0.tar.bz2 |
gccrs: fix clang formatting
gcc/rust/ChangeLog:
* typecheck/rust-hir-type-check-expr.cc (TypeCheckExpr::visit): formatting
* typecheck/rust-tyty-variance-analysis-private.h: likewise
* typecheck/rust-tyty.cc (VariantDef::clone): likewise
(VariantDef::monomorphized_clone): likewise
* typecheck/rust-tyty.h: likewise
Signed-off-by: Philip Herron <herron.philip@googlemail.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/typecheck/rust-hir-type-check-expr.cc | 2 | ||||
-rw-r--r-- | gcc/rust/typecheck/rust-tyty-variance-analysis-private.h | 2 | ||||
-rw-r--r-- | gcc/rust/typecheck/rust-tyty.cc | 4 | ||||
-rw-r--r-- | gcc/rust/typecheck/rust-tyty.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gcc/rust/typecheck/rust-hir-type-check-expr.cc b/gcc/rust/typecheck/rust-hir-type-check-expr.cc index 92912e8..5bf8cc3 100644 --- a/gcc/rust/typecheck/rust-hir-type-check-expr.cc +++ b/gcc/rust/typecheck/rust-hir-type-check-expr.cc @@ -1802,7 +1802,7 @@ TypeCheckExpr::visit (HIR::ClosureExpr &expr) TyTy::TyVar result_type = expr.has_return_type () ? TyTy::TyVar ( - TypeCheckType::Resolve (expr.get_return_type ())->get_ref ()) + TypeCheckType::Resolve (expr.get_return_type ())->get_ref ()) : TyTy::TyVar::get_implicit_infer_var (expr.get_locus ()); // resolve the block diff --git a/gcc/rust/typecheck/rust-tyty-variance-analysis-private.h b/gcc/rust/typecheck/rust-tyty-variance-analysis-private.h index f4dc860..deb76a7 100644 --- a/gcc/rust/typecheck/rust-tyty-variance-analysis-private.h +++ b/gcc/rust/typecheck/rust-tyty-variance-analysis-private.h @@ -324,7 +324,7 @@ public: Variance variance) override; void add_constraints_from_generic_args (HirId ref, SubstitutionRef &subst, Variance variance, - bool invariant_args) override {}; + bool invariant_args) override{}; void add_constrints_from_param (ParamType ¶m, Variance variance) override; Variance contra (Variance variance) override diff --git a/gcc/rust/typecheck/rust-tyty.cc b/gcc/rust/typecheck/rust-tyty.cc index a87efb4..c5488fc 100644 --- a/gcc/rust/typecheck/rust-tyty.cc +++ b/gcc/rust/typecheck/rust-tyty.cc @@ -1704,7 +1704,7 @@ VariantDef::clone () const auto &&discriminant_opt = has_discriminant () ? tl::optional<std::unique_ptr<HIR::Expr>> ( - get_discriminant ().clone_expr ()) + get_discriminant ().clone_expr ()) : tl::nullopt; return new VariantDef (id, defid, identifier, ident, type, @@ -1720,7 +1720,7 @@ VariantDef::monomorphized_clone () const auto discriminant_opt = has_discriminant () ? tl::optional<std::unique_ptr<HIR::Expr>> ( - get_discriminant ().clone_expr ()) + get_discriminant ().clone_expr ()) : tl::nullopt; return new VariantDef (id, defid, identifier, ident, type, diff --git a/gcc/rust/typecheck/rust-tyty.h b/gcc/rust/typecheck/rust-tyty.h index 585062b..8f37645 100644 --- a/gcc/rust/typecheck/rust-tyty.h +++ b/gcc/rust/typecheck/rust-tyty.h @@ -590,7 +590,7 @@ public: TypeBoundPredicate (const TypeBoundPredicate &other); - virtual ~TypeBoundPredicate () {}; + virtual ~TypeBoundPredicate (){}; TypeBoundPredicate &operator= (const TypeBoundPredicate &other); |