Files
highground-fork/src/error.h

9 lines
184 B
C++

#include <string>
namespace Solstice {
namespace Error {
[[noreturn]] void syntaxError(std::string what);
[[noreturn]] void typingError(std::string what);
}
}