cat: Remove accidentally-committed unused macro

This commit is contained in:
Andreas Kling 2021-11-27 00:48:44 +01:00
parent 1ded1ed963
commit 7341faceeb
Notes: sideshowbarker 2024-07-18 00:38:40 +09:00

View File

@ -12,10 +12,6 @@
#include <string.h>
#include <unistd.h>
#define IFTRY(binding, expression) \
if (auto _temporary_result = (expression); !_temporary_result.is_error()) { \
auto binding = _temporary_result.release_value();
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
TRY(Core::System::pledge("stdio rpath", nullptr));