mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
13 lines
122 B
C
13 lines
122 B
C
|
#pragma once
|
||
|
|
||
|
namespace AK {
|
||
|
|
||
|
enum class IterationDecision {
|
||
|
Continue,
|
||
|
Break,
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
using AK::IterationDecision;
|