From d5df395bef6c00c609284aa4a5dffa919db6c18d Mon Sep 17 00:00:00 2001 From: rmg-x Date: Mon, 7 Apr 2025 19:21:04 -0500 Subject: [PATCH] AK+Meta: Remove unused class `RecursionDecision` --- AK/RecursionDecision.h | 23 ----------------------- Meta/gn/secondary/AK/BUILD.gn | 1 - 2 files changed, 24 deletions(-) delete mode 100644 AK/RecursionDecision.h diff --git a/AK/RecursionDecision.h b/AK/RecursionDecision.h deleted file mode 100644 index 277220b1292..00000000000 --- a/AK/RecursionDecision.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2021, sin-ack - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -#pragma once - -#include - -namespace AK { - -enum class RecursionDecision { - Recurse, - Continue, - Break, -}; - -} - -#if USING_AK_GLOBALLY -using AK::RecursionDecision; -#endif diff --git a/Meta/gn/secondary/AK/BUILD.gn b/Meta/gn/secondary/AK/BUILD.gn index 56c26dc81dc..4e9a9b25fa6 100644 --- a/Meta/gn/secondary/AK/BUILD.gn +++ b/Meta/gn/secondary/AK/BUILD.gn @@ -138,7 +138,6 @@ shared_library("AK") { "QuickSort.h", "Random.cpp", "Random.h", - "RecursionDecision.h", "RedBlackTree.h", "RefCounted.h", "RefPtr.h",