summaryrefslogtreecommitdiff
path: root/AK/IterationDecision.h
blob: 26620ee438562ff392590e0b2cc104e1db4b1909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

namespace AK {

enum class IterationDecision {
    Continue,
    Break,
};

}

using AK::IterationDecision;