diff options
author | Philip Herron <phil@nebuloninc.com> | 2020-05-16 21:05:21 +0100 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2020-11-28 19:12:57 +0000 |
commit | 70f49c655b0fe99c744cd9cc4ab2b84ccc14c7f0 (patch) | |
tree | a9603b474c21989d524de1a8edce2413d6b90464 | |
parent | 41b6aa7046f84d4b3c83527b1e00d37b824508f4 (diff) | |
download | gcc-70f49c655b0fe99c744cd9cc4ab2b84ccc14c7f0.zip gcc-70f49c655b0fe99c744cd9cc4ab2b84ccc14c7f0.tar.gz gcc-70f49c655b0fe99c744cd9cc4ab2b84ccc14c7f0.tar.bz2 |
need public access to locus on OperatorExpr
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index 7e5d43e..45cb14c 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -295,7 +295,7 @@ OVERRIDE { return new PathExprQual(*this); class OperatorExpr : public ExprWithoutBlock { // TODO: create binary and unary operator subclasses? - +public: Location locus; protected: |