diff options
Diffstat (limited to 'clang/include/clang/Frontend/PCHReader.h')
-rw-r--r-- | clang/include/clang/Frontend/PCHReader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/include/clang/Frontend/PCHReader.h b/clang/include/clang/Frontend/PCHReader.h index 4cc4c24cc5a..995a1d563f2 100644 --- a/clang/include/clang/Frontend/PCHReader.h +++ b/clang/include/clang/Frontend/PCHReader.h @@ -235,6 +235,9 @@ public: /// \brief Reads an expression from the current stream position. Expr *ReadExpr(); + /// \brief Reads a statement from the current stream position. + Stmt *ReadStmt(); + /// \brief Retrieve the AST context that this PCH reader /// supplements. ASTContext &getContext() { return Context; } |