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",