mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
12 lines
122 B
C++
12 lines
122 B
C++
#pragma once
|
|
|
|
namespace AK {
|
|
|
|
enum class IterationDecision {
|
|
Continue,
|
|
Break,
|
|
};
|
|
|
|
}
|
|
|
|
using AK::IterationDecision;
|