diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/AST/Expr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 802f6a6d87..7e288110f5 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -34,6 +34,7 @@ protected: ~Expr() {} public: QualType getType() const { return TR; } + void setType(QualType t) { TR = t; } /// SourceLocation tokens are not useful in isolation - they are low level /// value objects created/interpreted by SourceManager. We assume AST |