#ifndef ERROR_H #define ERROR_H #include namespace Solstice { namespace Error { [[noreturn]] void syntaxError(std::string what, int line = 0, std::string lineContent = ""); [[noreturn]] void typingError(std::string what, int line = 0, std::string lineContent = ""); } } #endif