mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
ae3ffdd521
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by default, but can be overridden by build flags. This is a step towards integrating Jakt and AK types.
21 lines
272 B
C++
21 lines
272 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,
|
|
};
|
|
|
|
}
|
|
|
|
#if USING_AK_GLOBALLY
|
|
using AK::RecursionDecision;
|
|
#endif
|