forked from solstice/solstice
9 lines
184 B
C
9 lines
184 B
C
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace Solstice {
|
||
|
|
namespace Error {
|
||
|
|
[[noreturn]] void syntaxError(std::string what);
|
||
|
|
[[noreturn]] void typingError(std::string what);
|
||
|
|
}
|
||
|
|
}
|