mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-24 07:05:34 -07:00
Comment out error
This commit is contained in:
parent
c5f17881f3
commit
2371bf61f9
1 changed files with 10 additions and 1 deletions
|
@ -188,7 +188,16 @@ int main(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
else if (arg == "-eh") // Enable Error Handler
|
else if (arg == "-eh") // Enable Error Handler
|
||||||
{
|
{
|
||||||
|
#if !defined(_MSC_VER) && !defined(__CYGWIN__)
|
||||||
|
signal(SIGSEGV, ErrorHandler);
|
||||||
|
signal(SIGABRT, ErrorHandler);
|
||||||
|
#else
|
||||||
|
// HANDLE_WARNING(WarningType::Always,
|
||||||
|
// "tried to set error handler, but this ZAPD build lacks support for one",
|
||||||
|
// "");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (arg == "-v") // Verbose
|
else if (arg == "-v") // Verbose
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue