mirror of
https://github.com/transmission/transmission
synced 2025-01-30 10:52:00 +00:00
This reverts commit 0493542f62
.
This commit is contained in:
parent
b7099270b6
commit
0be7091eb1
1 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#include <cstdlib> // for abort()
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include "tr-assert.h"
|
||||
|
@ -18,6 +20,10 @@
|
|||
{
|
||||
auto const full_text = fmt::format(FMT_STRING("assertion failed: {:s} ({:s}:{:d})"), message, file, line);
|
||||
[NSException raise:NSInternalInconsistencyException format:@"%s", full_text.c_str()];
|
||||
|
||||
// We should not reach this anyway, but it helps mark the function as property noreturn
|
||||
// (the Objective-C NSException method does not).
|
||||
abort();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue