From 7341faceeb35b1b60f0946494268283192fca9c8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 27 Nov 2021 00:48:44 +0100 Subject: cat: Remove accidentally-committed unused macro --- Userland/Utilities/cat.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Userland/Utilities') diff --git a/Userland/Utilities/cat.cpp b/Userland/Utilities/cat.cpp index aa9dda6bb8..89f984b799 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)); -- cgit v1.2.3