mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
20 lines
243 B
C
20 lines
243 B
C
|
/*
|
||
|
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace AK {
|
||
|
|
||
|
enum class RecursionDecision {
|
||
|
Recurse,
|
||
|
Continue,
|
||
|
Break,
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
using AK::RecursionDecision;
|