prepare linux build, fix some memory leaks

This commit is contained in:
Ondřej Novák 2025-04-20 18:16:29 +02:00
parent 0fa5c48519
commit e7db30ca27
13 changed files with 133 additions and 94 deletions

View file

@ -34,3 +34,7 @@ void send_log_impl(const char *format, ...) {
#endif
}
void throw_exception(const char *text) {
throw std::runtime_error(std::string("Invoked crash:") + text);
}