#ifndef OBELISK_AST_ERROR_H #define OBELISK_AST_ERROR_H #include "ast/expression_ast.h" #include namespace obelisk { std::unique_ptr LogError(const char *Str); llvm::Value *LogErrorV(const char *Str); } // namespace obelisk #endif