mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-24 13:08:44 +00:00
8 lines
114 B
Plaintext
8 lines
114 B
Plaintext
#import "TryCatchCpp.h"
|
|
|
|
void tryCatchCpp(void (^block)()) {
|
|
try {
|
|
block();
|
|
} catch(...) {
|
|
}
|
|
} |