diff --git a/Userland/Utilities/cat.cpp b/Userland/Utilities/cat.cpp index aa9dda6bb8d..89f984b7991 100644 --- a/Userland/Utilities/cat.cpp +++ b/Userland/Utilities/cat.cpp @@ -12,10 +12,6 @@ #include #include -#define IFTRY(binding, expression) \ - if (auto _temporary_result = (expression); !_temporary_result.is_error()) { \ - auto binding = _temporary_result.release_value(); - ErrorOr serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio rpath", nullptr));