2c367e8125fa24bed8386696ad62a18860a6c87b
[kaleidoscope.git] / Kaleidoscope / ast.cpp
1 #include "ast.hpp"
2 #include <string>
3 #include <iostream>
4
5 std::unique_ptr<ExprAST> LogError(std::string str) {
6         std::cerr << "LogError: " << str << std::endl;
7         return nullptr;
8 }