Files
highground-fork/src/error.h

9 lines
184 B
C
Raw Normal View History

2025-12-24 13:15:48 +11:00
#include <string>
namespace Solstice {
namespace Error {
[[noreturn]] void syntaxError(std::string what);
[[noreturn]] void typingError(std::string what);
}
}