mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
AK: Add IterationDecision.h.
This commit is contained in:
parent
39d1a9ae66
commit
a0bde822ee
Notes:
sideshowbarker
2024-07-19 13:41:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a0bde822ee3
1 changed files with 12 additions and 0 deletions
12
AK/IterationDecision.h
Normal file
12
AK/IterationDecision.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
namespace AK {
|
||||
|
||||
enum class IterationDecision {
|
||||
Continue,
|
||||
Break,
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
using AK::IterationDecision;
|
Loading…
Reference in a new issue