Skip to content

Commit 766f989

Browse files
committed
Remove useless comments from HIR::MethodCallExpr
1 parent dcd7585 commit 766f989

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

gcc/rust/hir/tree/rust-hir-expr.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,18 +1635,13 @@ class MethodCallExpr : public ExprWithoutBlock
16351635
{
16361636
std::unique_ptr<Expr> receiver;
16371637
PathExprSegment method_name;
1638-
// inlined form of CallParams
16391638
std::vector<std::unique_ptr<Expr> > params;
16401639

16411640
Location locus;
16421641

16431642
public:
16441643
std::string as_string () const override;
16451644

1646-
/*inline std::vector<std::unique_ptr<Expr>> get_params() const {
1647-
return params;
1648-
}*/
1649-
16501645
MethodCallExpr (Analysis::NodeMapping mappings,
16511646
std::unique_ptr<Expr> call_receiver,
16521647
PathExprSegment method_path,

0 commit comments

Comments
 (0)