Big Kaleidoscope tutorial update.
[oota-llvm.git] / docs / tutorial / LangImpl2.rst
index 09c55e60f3ac6c579d69aafc1d6aa533080ac925..92a266eeb031b838e32d522357b855d0079d7297 100644 (file)
@@ -85,7 +85,7 @@ language:
     /// CallExprAST - Expression class for function calls.
     class CallExprAST : public ExprAST {
       std::string Callee;
-      std::vector<ExprAST*> Args;
+      std::vector<std::unique_ptr<ExprAST>> Args;
 
     public:
       CallExprAST(const std::string &Callee,